diff options
Diffstat (limited to 'src/stdio/__stdout_write.c')
-rw-r--r-- | src/stdio/__stdout_write.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdio/__stdout_write.c b/src/stdio/__stdout_write.c index dd1ec60f..692d0519 100644 --- a/src/stdio/__stdout_write.c +++ b/src/stdio/__stdout_write.c @@ -9,3 +9,11 @@ size_t __stdout_write(FILE *f, const unsigned char *buf, size_t len) f->lbf = -1; return __stdio_write(f, buf, len); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |