X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=libiberty%2Fvfprintf.c;h=9bd3ed555d070d02e8c79f402c5d7d9fac352943;hb=44a8b4df1d6f5b8096f01787751fd51c42e78fc6;hp=18f09d47d324771a38b8b78b2ba5bb8dcf777388;hpb=1ea16ec5b465e30a034cba7bae02ccb0eac546fd;p=deliverable%2Fbinutils-gdb.git diff --git a/libiberty/vfprintf.c b/libiberty/vfprintf.c index 18f09d47d3..9bd3ed555d 100644 --- a/libiberty/vfprintf.c +++ b/libiberty/vfprintf.c @@ -4,19 +4,12 @@ */ #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); }