comparison libiberty/vprintf.c @ 67:f6334be47118

update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
author nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp>
date Tue, 22 Mar 2011 17:18:12 +0900
parents a06113de4d67
children
comparison
equal deleted inserted replaced
65:65488c3d617d 67:f6334be47118
1 /* 1 /*
2 2
3 @deftypefn Supplemental int vprintf (const char *@var{format}, va_list @var{ap}) 3 @deftypefn Supplemental int vprintf (const char *@var{format}, va_list @var{ap})
4 @deftypefnx Supplemental int vfprintf (FILE *@var{stream}, const char *@var{format}, va_list @var{ap}) 4 @deftypefnx Supplemental int vfprintf (FILE *@var{stream}, @
5 @deftypefnx Supplemental int vsprintf (char *@var{str}, const char *@var{format}, va_list @var{ap}) 5 const char *@var{format}, va_list @var{ap})
6 @deftypefnx Supplemental int vsprintf (char *@var{str}, @
7 const char *@var{format}, va_list @var{ap})
6 8
7 These functions are the same as @code{printf}, @code{fprintf}, and 9 These functions are the same as @code{printf}, @code{fprintf}, and
8 @code{sprintf}, respectively, except that they are called with a 10 @code{sprintf}, respectively, except that they are called with a
9 @code{va_list} instead of a variable number of arguments. Note that 11 @code{va_list} instead of a variable number of arguments. Note that
10 they do not call @code{va_end}; this is the application's 12 they do not call @code{va_end}; this is the application's