diff options
Diffstat (limited to 'string/tester.c')
-rw-r--r-- | string/tester.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/string/tester.c b/string/tester.c index 0a13a8c..23d0af8 100644 --- a/string/tester.c +++ b/string/tester.c @@ -20,8 +20,7 @@ size_t errors = 0; /* Complain if condition is not true. */ void -check (thing, number) - int thing, number; +check (int thing, int number) { if (!thing) { @@ -40,9 +39,7 @@ char one[50]; char two[50]; int -main (argc, argv) - int argc; - char **argv; +main (void) { char *cp; |