Index: wc/Makefile =================================================================== RCS file: /home/ncvs/src/usr.bin/wc/Makefile,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 Makefile --- wc/Makefile 27 May 1994 12:33:28 -0000 1.1.1.1 +++ wc/Makefile 27 Dec 2004 21:12:39 -0000 @@ -1,5 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= wc - +WARNS?= 6 .include Index: wc/wc.c =================================================================== RCS file: /home/ncvs/src/usr.bin/wc/wc.c,v retrieving revision 1.20 diff -u -r1.20 wc.c --- wc/wc.c 9 Apr 2004 11:17:29 -0000 1.20 +++ wc/wc.c 27 Dec 2004 22:15:59 -0000 @@ -69,9 +69,7 @@ static void usage(void); int -main(argc, argv) - int argc; - char *argv[]; +main(int argc, char *argv[]) { int ch, errors, total; @@ -133,8 +131,7 @@ } static int -cnt(file) - const char *file; +cnt(const char *file) { struct stat sb; uintmax_t linect, wordct, charct;