diff options
Diffstat (limited to 'userland/libc/stdio/fscanf.c')
-rw-r--r-- | userland/libc/stdio/fscanf.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/userland/libc/stdio/fscanf.c b/userland/libc/stdio/fscanf.c new file mode 100644 index 0000000..785ce4b --- /dev/null +++ b/userland/libc/stdio/fscanf.c @@ -0,0 +1,7 @@ +#include <stdio.h> +#include <assert.h> + +int fscanf(FILE *stream, const char *format, ...) { + // FIXME + assert(0); +} |