2010-03-25 Doug Kwan <dougkwan@google.com>
[deliverable/binutils-gdb.git] / libiberty / vprintf.c
index 9487896ea5efeea77befdebea6c1397b6cc33358..c2553167babc6411fa7a145c0b66a3733e18b61f 100644 (file)
@@ -16,17 +16,11 @@ nonstandard but common function @code{_doprnt}.
 */
 
 #include <ansidecl.h>
-#ifdef ANSI_PROTOTYPES
 #include <stdarg.h>
-#else
-#include <varargs.h>
-#endif
 #include <stdio.h>
 #undef vprintf
 int
-vprintf (format, ap)
-     const char *format;
-     va_list ap;
+vprintf (const char *format, va_list ap)
 {
   return vfprintf (stdout, format, ap);
 }
This page took 0.024338 seconds and 4 git commands to generate.