xref: /minix3/lib/libc/stdio/vprintf.c (revision b6cbf7203b080219de306404f8022a65b7884f33)
1 /*
2  * vprintf - formatted output without ellipsis to the standard output stream
3  */
4 /* $Header$ */
5 
6 #include	<stdio.h>
7 #include	<stdarg.h>
8 #include	"loc_incl.h"
9 
10 int
11 vprintf(const char *format, va_list arg)
12 {
13 	return _doprnt(format, arg, stdout);
14 }
15