Retro68/binutils/libiberty/vfprintf.c

16 lines
348 B
C
Raw Normal View History

2012-03-26 19:18:29 +00:00
/* Provide a version vfprintf in terms of _doprnt.
By Kaveh Ghazi (ghazi@caip.rutgers.edu) 3/29/98
2022-10-27 18:45:45 +00:00
Copyright (C) 1998-2022 Free Software Foundation, Inc.
2012-03-26 19:18:29 +00:00
*/
#include "ansidecl.h"
#include <stdarg.h>
#include <stdio.h>
#undef vfprintf
int
vfprintf (FILE *stream, const char *format, va_list ap)
{
return _doprnt (format, ap, stream);
}