X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=libiberty%2Fvfprintf.c;h=daa32fa1184c4f422de31b4215dc48d4e594eb2b;hb=d0a3c757b9c3d717f4439d107821c8ba4efcaa90;hp=db7b2ff4c19e0f92e7548e11430ec79fbba6465f;hpb=dc9e099fc0eced486ae2b49455c9da113c11f4ff;p=deliverable%2Fbinutils-gdb.git diff --git a/libiberty/vfprintf.c b/libiberty/vfprintf.c index db7b2ff4c1..daa32fa118 100644 --- a/libiberty/vfprintf.c +++ b/libiberty/vfprintf.c @@ -1,21 +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-2021 Free Software Foundation, Inc. */ -#ifdef __STDC__ +#include "ansidecl.h" #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); }