at_wini also needs a pci_reserve() for the pci compatability device, if
[minix3.git] / lib / stdio / vprintf.c
bloba123cf24cd07c3394d67749d740ff1bf469ee59c
1 /*
2 * vprintf - formatted output without ellipsis to the standard output stream
3 */
4 /* $Header$ */
6 #include <stdio.h>
7 #include <stdarg.h>
8 #include "loc_incl.h"
10 int
11 vprintf(const char *format, va_list arg)
13 return _doprnt(format, arg, stdout);