ref: 4b9f39b27fb44f607f9b5ba6be2f18b7099b5666
dir: /sys/src/libstdio/scanf.c/
/*
* pANS stdio -- scanf
*/
#include "iolib.h"
int scanf(const char *fmt, ...){
int n;
va_list args;
va_start(args, fmt);
n=vfscanf(stdin, fmt, args);
va_end(args);
return n;
}