about summary refs log tree commit diff
path: root/stdio-common/bug7.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdio-common/bug7.c')
-rw-r--r--stdio-common/bug7.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdio-common/bug7.c b/stdio-common/bug7.c
index af06f8d6a5..8a95bf25d4 100644
--- a/stdio-common/bug7.c
+++ b/stdio-common/bug7.c
@@ -3,12 +3,12 @@
 #include <stdio.h>
 
 int
-main ()
+main (int argc, char *argv[])
 {
   int lose = 0;
   char filename[] = "/tmp/foo";
   FILE *fp;
- 
+
   fp = fopen (filename, "w+");
   fprintf (fp, "Hello world!\n");
   fflush (fp);