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