diff options
-rw-r--r-- | usr.bin/nice/nice.c | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/usr.bin/nice/nice.c b/usr.bin/nice/nice.c index de5fe5b..8d54672 100644 --- a/usr.bin/nice/nice.c +++ b/usr.bin/nice/nice.c @@ -29,24 +29,12 @@ * SUCH DAMAGE. */ -#include <sys/cdefs.h> -#ifndef lint -__COPYRIGHT("@(#) Copyright (c) 1989\ - The Regents of the University of California. All rights reserved."); -#endif /* not lint */ - -#ifndef lint -#if 0 -static char sccsid[] = "@(#)nice.c 5.4 (Berkeley) 6/1/90"; -#endif -__RCSID("$NetBSD: nice.c,v 1.15 2008/07/21 14:19:24 lukem Exp $"); -#endif /* not lint */ - #include <sys/time.h> #include <sys/resource.h> #include <stdio.h> #include <stdlib.h> +#include <bsd/stdlib.h> #include <string.h> #include <limits.h> #include <locale.h> @@ -57,7 +45,7 @@ __RCSID("$NetBSD: nice.c,v 1.15 2008/07/21 14:19:24 lukem Exp $"); #define DEFNICE 10 -static void usage(void) __dead; +static void usage(void); int main(int argc, char **argv) |