Update from Cygnus libiberty.
[gcc.git] / libiberty / vprintf.c
1 #include <stdio.h>
2 #ifdef __STDC__
3 #include <stdarg.h>
4 #else
5 #include <varargs.h>
6 #endif
7 #include <ansidecl.h>
8 #undef vprintf
9 int
10 vprintf (format, ap)
11 const char *format;
12 va_list ap;
13 {
14 return vfprintf (stdout, format, ap);
15 }