mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-19 04:48:37 +01:00
9ea2a99edb
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@15071 a95241bf-73f2-0310-859d-f6bbb57e9c96
16 lines
237 B
C
16 lines
237 B
C
#ifdef __STDC__
|
|
#include <stdarg.h>
|
|
#else
|
|
#include <varargs.h>
|
|
#endif
|
|
#include <stdio.h>
|
|
#include <ansidecl.h>
|
|
#undef vprintf
|
|
int
|
|
vprintf (format, ap)
|
|
const char *format;
|
|
va_list ap;
|
|
{
|
|
return vfprintf (stdout, format, ap);
|
|
}
|