summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@cvs.openbsd.org>2009-10-28 02:03:48 +0000
committerIngo Schwarze <schwarze@cvs.openbsd.org>2009-10-28 02:03:48 +0000
commitdc0eb5746196ad1c844e4cec86b96c7ed8f795d1 (patch)
treea63f99aed8d87648eff3407e0cb916283c6d09fb
parentc064a77c0c65bede25364f1d0db81f3f0541afa8 (diff)
some includes got lost in the previous commit;
"go ahead, put it back" deraadt@
-rw-r--r--bin/csh/set.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/bin/csh/set.c b/bin/csh/set.c
index 4476fa29381..b8b862239f5 100644
--- a/bin/csh/set.c
+++ b/bin/csh/set.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: set.c,v 1.11 2009/10/27 23:59:21 deraadt Exp $ */
+/* $OpenBSD: set.c,v 1.12 2009/10/28 02:03:47 schwarze Exp $ */
/* $NetBSD: set.c,v 1.8 1995/03/21 18:35:52 mycroft Exp $ */
/*-
@@ -30,6 +30,13 @@
* SUCH DAMAGE.
*/
+#include <sys/types.h>
+#include <stdlib.h>
+#ifndef SHORT_STRINGS
+#include <string.h>
+#endif /* SHORT_STRINGS */
+#include <stdarg.h>
+
#include "csh.h"
#include "extern.h"