minix/lib/stdio/vprintf.c

15 lines
249 B
C
Raw Normal View History

2005-04-21 16:53:53 +02:00
/*
* vprintf - formatted output without ellipsis to the standard output stream
*/
/* $Header$ */
#include <stdio.h>
#include <stdarg.h>
#include "loc_incl.h"
int
vprintf(const char *format, va_list arg)
{
return _doprnt(format, arg, stdout);
}