diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2003-04-30 15:30:06 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2003-04-30 15:30:06 +0000 |
commit | e29c562b07b61709e03badd99ec501c6c652c12b (patch) | |
tree | 90f1f19dc0f7ed8c2b98b07bff45c6f2775ff3da /usr.sbin/repquota | |
parent | d4ed487af97ef07d2e7043ab42edc5cf94f5bfe9 (diff) |
pull in stdlib.h to avoid implicit decl of calloc(); ok henning
Diffstat (limited to 'usr.sbin/repquota')
-rw-r--r-- | usr.sbin/repquota/repquota.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/repquota/repquota.c b/usr.sbin/repquota/repquota.c index bc0de916d01..84b0a3a089e 100644 --- a/usr.sbin/repquota/repquota.c +++ b/usr.sbin/repquota/repquota.c @@ -42,7 +42,7 @@ static char copyright[] = #ifndef lint /*static char sccsid[] = "from: @(#)repquota.c 8.1 (Berkeley) 6/6/93";*/ -static char *rcsid = "$Id: repquota.c,v 1.21 2003/03/30 20:52:42 deraadt Exp $"; +static char *rcsid = "$Id: repquota.c,v 1.22 2003/04/30 15:30:05 jason Exp $"; #endif /* not lint */ /* @@ -58,6 +58,7 @@ static char *rcsid = "$Id: repquota.c,v 1.21 2003/03/30 20:52:42 deraadt Exp $"; #include <unistd.h> #include <string.h> #include <errno.h> +#include <stdlib.h> char *qfname = QUOTAFILENAME; char *qfextension[] = INITQFNAMES; |