2
0
mirror of git://gcc.gnu.org/git/gcc.git synced 2024-12-23 21:39:53 +08:00
gcc/libiberty/vprintf.c

16 lines
237 B
C
Raw Normal View History

1997-08-22 06:57:35 +08:00
#ifdef __STDC__
#include <stdarg.h>
#else
#include <varargs.h>
#endif
#include <stdio.h>
1997-08-22 06:57:35 +08:00
#include <ansidecl.h>
#undef vprintf
int
vprintf (format, ap)
const char *format;
va_list ap;
{
return vfprintf (stdout, format, ap);
}