diff options
Diffstat (limited to 'bin')
-rw-r--r-- | bin/csh/set.c | 9 |
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" |