ack/lang/cem/libcc/stdio/vprintf.c

13 lines
149 B
C
Raw Normal View History

1994-06-24 14:02:31 +00:00
/* $Id$ */
1991-10-22 09:50:57 +00:00
#include <stdio.h>
#include <varargs.h>
int
vprintf(format, arg)
char *format;
va_list arg;
{
return _doprnt(format, arg, stdout);
}