=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/split/split.c,v retrieving revision 1.8 retrieving revision 1.9 diff -c -r1.8 -r1.9 *** src/usr.bin/split/split.c 2003/06/03 02:56:16 1.8 --- src/usr.bin/split/split.c 2003/06/10 22:20:51 1.9 *************** *** 1,4 **** ! /* $OpenBSD: split.c,v 1.8 2003/06/03 02:56:16 millert Exp $ */ /* $NetBSD: split.c,v 1.5 1995/08/31 22:22:05 jtc Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: split.c,v 1.9 2003/06/10 22:20:51 deraadt Exp $ */ /* $NetBSD: split.c,v 1.5 1995/08/31 22:22:05 jtc Exp $ */ /* *************** *** 40,46 **** #if 0 static char sccsid[] = "@(#)split.c 8.3 (Berkeley) 4/25/94"; #else ! static char rcsid[] = "$OpenBSD: split.c,v 1.8 2003/06/03 02:56:16 millert Exp $"; #endif #endif /* not lint */ --- 40,46 ---- #if 0 static char sccsid[] = "@(#)split.c 8.3 (Berkeley) 4/25/94"; #else ! static char rcsid[] = "$OpenBSD: split.c,v 1.9 2003/06/10 22:20:51 deraadt Exp $"; #endif #endif /* not lint */ *************** *** 74,82 **** void usage(void); int ! main(argc, argv) ! int argc; ! char *argv[]; { int ch; char *ep, *p; --- 74,80 ---- void usage(void); int ! main(int argc, char *argv[]) { int ch; char *ep, *p; *************** *** 171,177 **** * Split the input by bytes. */ void ! split1() { long bcnt; int dist, len; --- 169,175 ---- * Split the input by bytes. */ void ! split1(void) { long bcnt; int dist, len; *************** *** 219,225 **** * Split the input by lines. */ void ! split2() { long lcnt = 0; FILE *infp; --- 217,223 ---- * Split the input by lines. */ void ! split2(void) { long lcnt = 0; FILE *infp; *************** *** 271,277 **** * Open a new output file. */ void ! newfile() { static long fnum; static int defname; --- 269,275 ---- * Open a new output file. */ void ! newfile(void) { static long fnum; static int defname; *************** *** 308,314 **** } void ! usage() { extern char *__progname; --- 306,312 ---- } void ! usage(void) { extern char *__progname;