diff options
author | Peter Valchev <pvalchev@cvs.openbsd.org> | 2001-07-06 21:54:58 +0000 |
---|---|---|
committer | Peter Valchev <pvalchev@cvs.openbsd.org> | 2001-07-06 21:54:58 +0000 |
commit | 034b5b4c69371cec6e44e987533fad621d9fb5ba (patch) | |
tree | 060305b519ae1de59178edf9d87a645c60abdece /usr.bin/renice | |
parent | b985c75823cf843ce3176c2aec9c3ffd144756b1 (diff) |
missing prototypes; ok millert
Diffstat (limited to 'usr.bin/renice')
-rw-r--r-- | usr.bin/renice/renice.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/renice/renice.c b/usr.bin/renice/renice.c index d679b56686d..8ff6b696950 100644 --- a/usr.bin/renice/renice.c +++ b/usr.bin/renice/renice.c @@ -1,4 +1,4 @@ -/* $OpenBSD: renice.c,v 1.5 1999/03/04 16:14:58 millert Exp $ */ +/* $OpenBSD: renice.c,v 1.6 2001/07/06 21:54:57 pvalchev Exp $ */ /* * Copyright (c) 1983, 1989, 1993 @@ -43,7 +43,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)renice.c 8.1 (Berkeley) 6/9/93"; #else -static char rcsid[] = "$OpenBSD: renice.c,v 1.5 1999/03/04 16:14:58 millert Exp $"; +static char rcsid[] = "$OpenBSD: renice.c,v 1.6 2001/07/06 21:54:57 pvalchev Exp $"; #endif #endif /* not lint */ @@ -57,6 +57,7 @@ static char rcsid[] = "$OpenBSD: renice.c,v 1.5 1999/03/04 16:14:58 millert Exp #include <err.h> #include <errno.h> +int main __P((int, char **)); int donice __P((int, uid_t, int)); void usage __P((void)); @@ -67,6 +68,7 @@ void usage __P((void)); */ int main(argc, argv) + int argc; char **argv; { int which = PRIO_PROCESS; |