mirror of
https://github.com/diegocr/libnix.git
synced 2026-09-12 19:50:46 +00:00
12 lines
194 B
C
12 lines
194 B
C
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
|
|
int scanf(const char *format,...)
|
|
{ int retval;
|
|
va_list args;
|
|
va_start(args,format);
|
|
retval=vscanf(format,args);
|
|
va_end(args);
|
|
return retval;
|
|
}
|