binutils-gdb/libiberty/vfprintf.c

16 lines
343 B
C
Raw Normal View History

1999-05-03 09:29:11 +02:00
/* Provide a version vfprintf in terms of _doprnt.
By Kaveh Ghazi (ghazi@caip.rutgers.edu) 3/29/98
Copyright (C) 1998 Free Software Foundation, Inc.
*/
2003-04-15 23:29:34 +02:00
#include "ansidecl.h"
1999-05-03 09:29:11 +02:00
#include <stdarg.h>
#include <stdio.h>
#undef vfprintf
int
2005-03-28 04:09:01 +02:00
vfprintf (FILE *stream, const char *format, va_list ap)
1999-05-03 09:29:11 +02:00
{
return _doprnt (format, ap, stream);
}