diff options
Diffstat (limited to 'src/stdio/scanf.c')
-rw-r--r-- | src/stdio/scanf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdio/scanf.c b/src/stdio/scanf.c index bd77699c..52c2fe6e 100644 --- a/src/stdio/scanf.c +++ b/src/stdio/scanf.c @@ -12,3 +12,11 @@ int scanf(const char *restrict fmt, ...) } weak_alias(scanf,__isoc99_scanf); + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |