52cb49752a
this is heavily stripped down.
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);
|
|
}
|