=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/head/head.c,v retrieving revision 1.10 retrieving revision 1.11 diff -c -r1.10 -r1.11 *** src/usr.bin/head/head.c 2003/06/03 02:56:09 1.10 --- src/usr.bin/head/head.c 2003/06/10 22:20:47 1.11 *************** *** 1,4 **** ! /* $OpenBSD: head.c,v 1.10 2003/06/03 02:56:09 millert Exp $ */ /* * Copyright (c) 1980, 1987 Regents of the University of California. --- 1,4 ---- ! /* $OpenBSD: head.c,v 1.11 2003/06/10 22:20:47 deraadt Exp $ */ /* * Copyright (c) 1980, 1987 Regents of the University of California. *************** *** 37,43 **** #ifndef lint /*static char sccsid[] = "from: @(#)head.c 5.5 (Berkeley) 6/1/90";*/ ! static char rcsid[] = "$OpenBSD: head.c,v 1.10 2003/06/03 02:56:09 millert Exp $"; #endif /* not lint */ #include --- 37,43 ---- #ifndef lint /*static char sccsid[] = "from: @(#)head.c 5.5 (Berkeley) 6/1/90";*/ ! static char rcsid[] = "$OpenBSD: head.c,v 1.11 2003/06/10 22:20:47 deraadt Exp $"; #endif /* not lint */ #include *************** *** 57,65 **** */ int ! main(argc, argv) ! int argc; ! char **argv; { long cnt; int ch, firsttime; --- 57,63 ---- */ int ! main(int argc, char *argv[]) { long cnt; int ch, firsttime; *************** *** 118,124 **** static void ! usage () { fputs("usage: head [-n line_count] [file ...]\n", stderr); exit(1); --- 116,122 ---- static void ! usage(void) { fputs("usage: head [-n line_count] [file ...]\n", stderr); exit(1);