diff options
Diffstat (limited to 'src/user/lib/stdio/misc.c')
-rw-r--r-- | src/user/lib/stdio/misc.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/user/lib/stdio/misc.c b/src/user/lib/stdio/misc.c index d74c197..a140ee4 100644 --- a/src/user/lib/stdio/misc.c +++ b/src/user/lib/stdio/misc.c @@ -44,3 +44,9 @@ char *tmpnam(char *s) { strcpy(s, "/tmp/tmpnam"); return s; } + +// TODO sscanf +int sscanf(const char *restrict s, const char *restrict format, ...) { + (void)s; (void)format; + return 0; +} |