summaryrefslogtreecommitdiff
path: root/bin/ksh/main.c
diff options
context:
space:
mode:
authormmcc <mmcc@cvs.openbsd.org>2015-10-19 14:42:17 +0000
committermmcc <mmcc@cvs.openbsd.org>2015-10-19 14:42:17 +0000
commit50a0127e660de6290300651c992bb026a2351c21 (patch)
tree84941c89a35c224b39170a5dba4d0d480c21e090 /bin/ksh/main.c
parentbf8e653e0ed5cc4d80751a521c33704edfc66a43 (diff)
Move string.h include from sh.h to the files that use it.
ok nicm@
Diffstat (limited to 'bin/ksh/main.c')
-rw-r--r--bin/ksh/main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/ksh/main.c b/bin/ksh/main.c
index 4fe57cababc..c495256255c 100644
--- a/bin/ksh/main.c
+++ b/bin/ksh/main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: main.c,v 1.68 2015/10/19 14:01:37 mmcc Exp $ */
+/* $OpenBSD: main.c,v 1.69 2015/10/19 14:42:16 mmcc Exp $ */
/*
* startup, main loop, environments and error handling
@@ -10,6 +10,7 @@
#include <paths.h>
#include <pwd.h>
+#include <string.h>
#include "sh.h"