diff options
author | Kevin Lo <kevlo@cvs.openbsd.org> | 2000-11-07 09:04:22 +0000 |
---|---|---|
committer | Kevin Lo <kevlo@cvs.openbsd.org> | 2000-11-07 09:04:22 +0000 |
commit | 36527e914fb62c5b288ce61b594d2891a01ef68e (patch) | |
tree | 8f082ee62c2a6ab77a8a93845d7186cfc2c0ffb2 /usr.bin | |
parent | 2a1e121f80b913de46515dad392eab335cca0ec4 (diff) |
Add __P(). ok deraadt@
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/nice/nice.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/nice/nice.c b/usr.bin/nice/nice.c index a7da26b3745..c119b88a32c 100644 --- a/usr.bin/nice/nice.c +++ b/usr.bin/nice/nice.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nice.c,v 1.2 1996/06/26 05:37:31 deraadt Exp $ */ +/* $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 $ */ /* @@ -44,7 +44,7 @@ char copyright[] = #if 0 static char sccsid[] = "@(#)nice.c 5.4 (Berkeley) 6/1/90"; #endif -static char rcsid[] = "$OpenBSD: nice.c,v 1.2 1996/06/26 05:37:31 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: nice.c,v 1.3 2000/11/07 09:04:21 kevlo Exp $"; #endif /* not lint */ #include <sys/types.h> @@ -61,7 +61,7 @@ static char rcsid[] = "$OpenBSD: nice.c,v 1.2 1996/06/26 05:37:31 deraadt Exp $" #define DEFNICE 10 -static void usage(); +static void usage __P((void)); int main(argc, argv) |