| Index: fusl/src/stdio/sscanf.c
|
| diff --git a/fusl/src/stdio/sscanf.c b/fusl/src/stdio/sscanf.c
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8a2302ff67a7f069226a7bdbc402221fa9314fdc
|
| --- /dev/null
|
| +++ b/fusl/src/stdio/sscanf.c
|
| @@ -0,0 +1,15 @@
|
| +#include <stdio.h>
|
| +#include <stdarg.h>
|
| +#include "libc.h"
|
| +
|
| +int sscanf(const char *restrict s, const char *restrict fmt, ...)
|
| +{
|
| + int ret;
|
| + va_list ap;
|
| + va_start(ap, fmt);
|
| + ret = vsscanf(s, fmt, ap);
|
| + va_end(ap);
|
| + return ret;
|
| +}
|
| +
|
| +weak_alias(sscanf,__isoc99_sscanf);
|
|
|