=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/uuencode/uuencode.c,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- src/usr.bin/uuencode/uuencode.c 2003/06/03 02:56:21 1.5 +++ src/usr.bin/uuencode/uuencode.c 2003/06/10 22:20:53 1.6 @@ -1,4 +1,4 @@ -/* $OpenBSD: uuencode.c,v 1.5 2003/06/03 02:56:21 millert Exp $ */ +/* $OpenBSD: uuencode.c,v 1.6 2003/06/10 22:20:53 deraadt Exp $ */ /* $NetBSD: uuencode.c,v 1.7 1994/11/17 07:41:15 jtc Exp $ */ /*- @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)uuencode.c 8.2 (Berkeley) 4/2/94"; #endif -static char rcsid[] = "$OpenBSD: uuencode.c,v 1.5 2003/06/03 02:56:21 millert Exp $"; +static char rcsid[] = "$OpenBSD: uuencode.c,v 1.6 2003/06/10 22:20:53 deraadt Exp $"; #endif /* not lint */ /* @@ -55,13 +55,11 @@ #include #include -static void encode(); -static __dead void usage(); +static void encode(void); +static __dead void usage(void); int -main(argc, argv) - int argc; - char *argv[]; +main(int argc, char *argv[]) { struct stat sb; int mode; @@ -110,7 +108,7 @@ * copy from in to out, encoding as you go along. */ static void -encode() +encode(void) { int ch, n; char *p; @@ -151,7 +149,7 @@ } static void -usage() +usage(void) { (void)fprintf(stderr,"usage: uuencode [infile] remotefile\n"); exit(1);