Retro68/gcc/libiberty/vfprintf.c

16 lines
348 B
C
Raw Permalink Normal View History

2012-03-27 23:13:14 +00:00
/* Provide a version vfprintf in terms of _doprnt.
By Kaveh Ghazi (ghazi@caip.rutgers.edu) 3/29/98
Copyright (C) 1998-2022 Free Software Foundation, Inc.
2012-03-27 23:13:14 +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);
}