9109d7af7f
FILE* innards; allow plats to replace the entire emulated FILE* system.
18 lines
278 B
C
18 lines
278 B
C
/*
|
|
* vprintf - formatted output without ellipsis to the standard output stream
|
|
*/
|
|
/* $Id$ */
|
|
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include "loc_incl.h"
|
|
|
|
#if ACKCONF_WANT_STDIO
|
|
|
|
int vprintf(const char* format, va_list arg)
|
|
{
|
|
return vfprintf(stdout, format, arg);
|
|
}
|
|
|
|
#endif
|