13 lines
153 B
C
13 lines
153 B
C
|
/* $Header$ */
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include <varargs.h>
|
||
|
|
||
|
int
|
||
|
vprintf(format, arg)
|
||
|
char *format;
|
||
|
va_list arg;
|
||
|
{
|
||
|
return _doprnt(format, arg, stdout);
|
||
|
}
|