1387c8713b
core (and split them up).
17 lines
256 B
C
17 lines
256 B
C
/*
|
|
* vprintf - formatted output without ellipsis to the standard output stream
|
|
*/
|
|
/* $Id$ */
|
|
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
|
|
#if ACKCONF_WANT_STDIO
|
|
|
|
int vprintf(const char* format, va_list arg)
|
|
{
|
|
return vfprintf(stdout, format, arg);
|
|
}
|
|
|
|
#endif
|