X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=libiberty%2Fvfprintf.c;h=4e375c949f5a8edaa79ac1b3fd8647742d46a24d;hb=2f91880f3afb3cc521111dfcc99b214c77aa97a1;hp=18f09d47d324771a38b8b78b2ba5bb8dcf777388;hpb=1ea16ec5b465e30a034cba7bae02ccb0eac546fd;p=deliverable%2Fbinutils-gdb.git diff --git a/libiberty/vfprintf.c b/libiberty/vfprintf.c index 18f09d47d3..4e375c949f 100644 --- a/libiberty/vfprintf.c +++ b/libiberty/vfprintf.c @@ -1,22 +1,15 @@ /* Provide a version vfprintf in terms of _doprnt. By Kaveh Ghazi (ghazi@caip.rutgers.edu) 3/29/98 - Copyright (C) 1998 Free Software Foundation, Inc. + Copyright (C) 1998-2017 Free Software Foundation, Inc. */ #include "ansidecl.h" -#ifdef ANSI_PROTOTYPES #include -#else -#include -#endif #include #undef vfprintf int -vfprintf (stream, format, ap) - FILE * stream; - const char * format; - va_list ap; +vfprintf (FILE *stream, const char *format, va_list ap) { return _doprnt (format, ap, stream); }