--- EVALB/evalb.c 1997-10-28 16:46:24.000000000 +0100 +++ EVALB-new/evalb.c 2005-08-24 21:13:49.225269250 +0200 @@ -237,7 +237,7 @@ /************************/ /* Function return-type */ /************************/ -void main(); +int main(); void init_global(); void print_head(); void init(); @@ -266,11 +266,9 @@ void Fatal(); void Usage(); -int fprintf(); -int printf(); int atoi(); int fclose(); -int sscanf(); +void exit(); /***********/ /* program */ @@ -279,7 +277,7 @@ fprintf(stderr,"Missing argument: %s\n",st); \ } -void +int main(argc,argv) int argc; char *argv[]; @@ -375,6 +373,8 @@ } print_total(); + + return 0; }