diff options
Diffstat (limited to 'src/stdio/printf.c')
-rw-r--r-- | src/stdio/printf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdio/printf.c b/src/stdio/printf.c index cebfe404..f6ae7330 100644 --- a/src/stdio/printf.c +++ b/src/stdio/printf.c @@ -10,3 +10,11 @@ int printf(const char *restrict fmt, ...) va_end(ap); return ret; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |