mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
13 lines
212 B
C
13 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);
|
|
}
|