Initial revision
[binutils.git] / libiberty / vfprintf.c
blobdb7b2ff4c19e0f92e7548e11430ec79fbba6465f
1 /* Provide a version vfprintf in terms of _doprnt.
2 By Kaveh Ghazi (ghazi@caip.rutgers.edu) 3/29/98
3 Copyright (C) 1998 Free Software Foundation, Inc.
4 */
6 #ifdef __STDC__
7 #include <stdarg.h>
8 #else
9 #include <varargs.h>
10 #endif
11 #include <stdio.h>
12 #undef vfprintf
14 int
15 vfprintf (stream, format, ap)
16 FILE * stream;
17 const char * format;
18 va_list ap;
20 return _doprnt (format, ap, stream);