diff options
Diffstat (limited to 'src/stdio/fputc.c')
-rw-r--r-- | src/stdio/fputc.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdio/fputc.c b/src/stdio/fputc.c index f364ed38..9f8aac5d 100644 --- a/src/stdio/fputc.c +++ b/src/stdio/fputc.c @@ -5,3 +5,11 @@ int fputc(int c, FILE *f) { return do_putc(c, f); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |