SysIII/usr/src/lib/libc/vax/stdio/vprintf.c

Compare this file to the similar file:
Show the results in this format:

#include <stdio.h>
#include <varargs.h>

int
vprintf (fmt, args)
	char *fmt;
	va_list args;
{
	return _doprnt (fmt, args, stdout);
}