mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-25 03:44:04 +08:00
6599da043e
From-SVN: r14877
14 lines
212 B
C
14 lines
212 B
C
#include <stdio.h>
|
|
#include <varargs.h>
|
|
#include <ansidecl.h>
|
|
#undef vfprintf
|
|
|
|
int
|
|
vfprintf (file, format, ap)
|
|
FILE *file;
|
|
const char *format;
|
|
va_list ap;
|
|
{
|
|
return _doprnt (format, ap, file);
|
|
}
|