summaryrefslogtreecommitdiffstats
path: root/usr.bin/nice/nice.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/nice/nice.c')
-rw-r--r--usr.bin/nice/nice.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/usr.bin/nice/nice.c b/usr.bin/nice/nice.c
index c68f9ba860e..1fcebb2079d 100644
--- a/usr.bin/nice/nice.c
+++ b/usr.bin/nice/nice.c
@@ -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 @@ char copyright[] =
#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 <sys/time.h>
@@ -59,9 +59,7 @@ int main(int, char **);
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 @@ main(argc, argv)
}
static void
-usage()
+usage(void)
{
extern char *__progname;
fprintf(stderr, "usage: %s [ -n increment ] utility [ argument ...]\n",