summaryrefslogtreecommitdiff
path: root/usr.sbin/repquota
diff options
context:
space:
mode:
authorJason Wright <jason@cvs.openbsd.org>2003-04-30 15:30:06 +0000
committerJason Wright <jason@cvs.openbsd.org>2003-04-30 15:30:06 +0000
commite29c562b07b61709e03badd99ec501c6c652c12b (patch)
tree90f1f19dc0f7ed8c2b98b07bff45c6f2775ff3da /usr.sbin/repquota
parentd4ed487af97ef07d2e7043ab42edc5cf94f5bfe9 (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.c3
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;