minix/lib/stdio/vscanf.c
2005-04-21 14:53:53 +00:00

14 lines
219 B
C
Executable file

/*
* vscanf.c - read formatted input from the standard input stream
*/
#include <stdio.h>
#include <stdarg.h>
#include "loc_incl.h"
int
vscanf(const char *format, va_list ap)
{
return _doscan(stdin, format, ap);
}