diff options
Diffstat (limited to 'src/libc/stdio/misc.c')
-rw-r--r-- | src/libc/stdio/misc.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/libc/stdio/misc.c b/src/libc/stdio/misc.c index 45144f3..7e8e746 100644 --- a/src/libc/stdio/misc.c +++ b/src/libc/stdio/misc.c @@ -44,9 +44,3 @@ 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; -} |