Ignore:
Timestamp:
Aug 16, 2003, 6:59:22 PM (22 years ago)
Author:
bird
Message:

binutils v2.14 - offical sources.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/binutils/libiberty/vprintf.c

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r608 r609  
    1 #ifdef __STDC__
     1/*
     2
     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})
     5@deftypefnx Supplemental int vsprintf (char *@var{str}, const char *@var{format}, va_list @var{ap})
     6
     7These functions are the same as @code{printf}, @code{fprintf}, and
     8@code{sprintf}, respectively, except that they are called with a
     9@code{va_list} instead of a variable number of arguments.  Note that
     10they do not call @code{va_end}; this is the application's
     11responsibility.  In @libib{} they are implemented in terms of the
     12nonstandard but common function @code{_doprnt}.
     13
     14@end deftypefn
     15
     16*/
     17
     18#include <ansidecl.h>
     19#ifdef ANSI_PROTOTYPES
    220#include <stdarg.h>
    321#else
     
    523#endif
    624#include <stdio.h>
    7 #include <ansidecl.h>
    825#undef vprintf
    926int
Note: See TracChangeset for help on using the changeset viewer.