diff options
author | mmcc <mmcc@cvs.openbsd.org> | 2015-10-19 14:42:17 +0000 |
---|---|---|
committer | mmcc <mmcc@cvs.openbsd.org> | 2015-10-19 14:42:17 +0000 |
commit | 50a0127e660de6290300651c992bb026a2351c21 (patch) | |
tree | 84941c89a35c224b39170a5dba4d0d480c21e090 /bin/ksh/main.c | |
parent | bf8e653e0ed5cc4d80751a521c33704edfc66a43 (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.c | 3 |
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" |