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