summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Labrecque <vincent@cvs.openbsd.org>2002-02-14 22:54:36 +0000
committerVincent Labrecque <vincent@cvs.openbsd.org>2002-02-14 22:54:36 +0000
commit0e740613f2fbdd26969bca268c0429b96c37ebb8 (patch)
treeae7da73f55df588b6b3f6e85388f6e3af8594f97
parent3d9e0132d4af501fcdfab9159a0ba658abe56597 (diff)
some programs now need the errno definition and sys/params, so put them in
there.
-rw-r--r--usr.bin/mg/sysdef.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/mg/sysdef.h b/usr.bin/mg/sysdef.h
index 87c9848cbd6..8c719547740 100644
--- a/usr.bin/mg/sysdef.h
+++ b/usr.bin/mg/sysdef.h
@@ -1,12 +1,14 @@
-/* $OpenBSD: sysdef.h,v 1.9 2001/05/24 03:05:26 mickey Exp $ */
+/* $OpenBSD: sysdef.h,v 1.10 2002/02/14 22:54:35 vincent Exp $ */
/*
* POSIX system header file
*/
+#include <sys/param.h>
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
#include <string.h>
+#include <errno.h>
#define KBLOCK 8192 /* Kill grow. */
#define GOOD 0 /* Good exit status. */