diff options
Diffstat (limited to 'stdio-common/test-fwrite.c')
-rw-r--r-- | stdio-common/test-fwrite.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdio-common/test-fwrite.c b/stdio-common/test-fwrite.c index cc6cdf038e..ce54169931 100644 --- a/stdio-common/test-fwrite.c +++ b/stdio-common/test-fwrite.c @@ -2,7 +2,7 @@ #include <string.h> int -main () +main (int argc, char *argv[]) { FILE *f = tmpfile (); char obuf[99999], ibuf[sizeof obuf]; @@ -23,7 +23,7 @@ main () memset (obuf, 'z', sizeof obuf); memset (ibuf, 'y', sizeof ibuf); - + if (fwrite (obuf, sizeof obuf, 1, f) != 1) { perror ("fwrite"); |