at_wini also needs a pci_reserve() for the pci compatability device, if
[minix3.git] / lib / stdio / vscanf.c
blob89ee8abd577127e0175b8d51c16afbfa7d1845df
1 /*
2 * vscanf.c - read formatted input from the standard input stream
3 */
5 #include <stdio.h>
6 #include <stdarg.h>
7 #include "loc_incl.h"
9 int
10 vscanf(const char *format, va_list ap)
12 return _doscan(stdin, format, ap);