diff options
Diffstat (limited to 'src/stdio/__stdio_write.c')
-rw-r--r-- | src/stdio/__stdio_write.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdio/__stdio_write.c b/src/stdio/__stdio_write.c index d2d89475..8821f842 100644 --- a/src/stdio/__stdio_write.c +++ b/src/stdio/__stdio_write.c @@ -32,3 +32,11 @@ size_t __stdio_write(FILE *f, const unsigned char *buf, size_t len) iov[0].iov_len -= cnt; } } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |