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