]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/binutils/libiberty/vprintf.c
Initial import of GNU binutils version 2.8.1. Believe it or not,
[FreeBSD/FreeBSD.git] / contrib / binutils / 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 }