diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-09-01 01:41:45 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-09-01 01:41:45 +0000 |
commit | 10a0f9a6e2e02a8c66e4031ad1b040cd89267df7 (patch) | |
tree | ba0833f729d8e271de23e0ec2da132ae46a91c22 | |
parent | a77ba121ed7e4931bff86c87a5c0e54d4eea2c63 (diff) |
fix warnings
-rw-r--r-- | usr.sbin/edquota/edquota.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.sbin/edquota/edquota.c b/usr.sbin/edquota/edquota.c index 151f8c0b836..fde69f5d6ce 100644 --- a/usr.sbin/edquota/edquota.c +++ b/usr.sbin/edquota/edquota.c @@ -42,7 +42,7 @@ static char copyright[] = #ifndef lint /*static char sccsid[] = "from: @(#)edquota.c 8.1 (Berkeley) 6/6/93";*/ -static char *rcsid = "$Id: edquota.c,v 1.11 1996/08/29 03:33:48 deraadt Exp $"; +static char *rcsid = "$Id: edquota.c,v 1.12 1996/09/01 01:41:44 deraadt Exp $"; #endif /* not lint */ /* @@ -78,6 +78,9 @@ struct quotause { } *getprivs(); #define FOUND 0x01 +void putprivs __P((long, int, struct quotause *)); +void freeprivs __P((struct quotause *)); + void usage() { |