mirror of
https://github.com/opnsense/src.git
synced 2026-04-25 08:07:28 -04:00
12 lines
188 B
C
12 lines
188 B
C
|
|
#include <stdio.h>
|
||
|
|
#include <varargs.h>
|
||
|
|
#include <ansidecl.h>
|
||
|
|
#undef vprintf
|
||
|
|
int
|
||
|
|
vprintf (format, ap)
|
||
|
|
const char *format;
|
||
|
|
va_list ap;
|
||
|
|
{
|
||
|
|
return vfprintf (stdout, format, ap);
|
||
|
|
}
|