=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/nice/nice.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- src/usr.bin/nice/nice.c 2003/06/03 02:56:13 1.8 +++ src/usr.bin/nice/nice.c 2003/06/10 22:20:49 1.9 @@ -1,4 +1,4 @@ -/* $OpenBSD: nice.c,v 1.8 2003/06/03 02:56:13 millert Exp $ */ +/* $OpenBSD: nice.c,v 1.9 2003/06/10 22:20:49 deraadt Exp $ */ /* $NetBSD: nice.c,v 1.9 1995/08/31 23:30:58 jtc Exp $ */ /* @@ -40,7 +40,7 @@ #if 0 static char sccsid[] = "@(#)nice.c 5.4 (Berkeley) 6/1/90"; #endif -static char rcsid[] = "$OpenBSD: nice.c,v 1.8 2003/06/03 02:56:13 millert Exp $"; +static char rcsid[] = "$OpenBSD: nice.c,v 1.9 2003/06/10 22:20:49 deraadt Exp $"; #endif /* not lint */ #include @@ -59,9 +59,7 @@ static void usage(void); int -main(argc, argv) - int argc; - char **argv; +main(int argc, char *argv[]) { int niceness = DEFNICE; int c; @@ -107,7 +105,7 @@ } static void -usage() +usage(void) { extern char *__progname; fprintf(stderr, "usage: %s [ -n increment ] utility [ argument ...]\n",