=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/nice/nice.c,v retrieving revision 1.3 retrieving revision 1.4 diff -c -r1.3 -r1.4 *** src/usr.bin/nice/nice.c 2000/11/07 09:04:21 1.3 --- src/usr.bin/nice/nice.c 2001/05/24 03:04:35 1.4 *************** *** 1,4 **** ! /* $OpenBSD: nice.c,v 1.3 2000/11/07 09:04:21 kevlo Exp $ */ /* $NetBSD: nice.c,v 1.9 1995/08/31 23:30:58 jtc Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: nice.c,v 1.4 2001/05/24 03:04:35 pvalchev Exp $ */ /* $NetBSD: nice.c,v 1.9 1995/08/31 23:30:58 jtc Exp $ */ /* *************** *** 44,50 **** #if 0 static char sccsid[] = "@(#)nice.c 5.4 (Berkeley) 6/1/90"; #endif ! static char rcsid[] = "$OpenBSD: nice.c,v 1.3 2000/11/07 09:04:21 kevlo Exp $"; #endif /* not lint */ #include --- 44,50 ---- #if 0 static char sccsid[] = "@(#)nice.c 5.4 (Berkeley) 6/1/90"; #endif ! static char rcsid[] = "$OpenBSD: nice.c,v 1.4 2001/05/24 03:04:35 pvalchev Exp $"; #endif /* not lint */ #include *************** *** 61,66 **** --- 61,67 ---- #define DEFNICE 10 + int main __P((int, char **)); static void usage __P((void)); int *************** *** 114,121 **** static void usage() { ! (void)fprintf(stderr, ! "usage: nice [ -n increment ] utility [ argument ...]\n"); ! exit(1); } --- 115,122 ---- static void usage() { ! extern char *__progname; ! fprintf(stderr, "usage: %s [ -n increment ] utility [ argument ...]\n", ! __progname); exit(1); }