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/tree.c | |
parent | bf8e653e0ed5cc4d80751a521c33704edfc66a43 (diff) |
Move string.h include from sh.h to the files that use it.
ok nicm@
Diffstat (limited to 'bin/ksh/tree.c')
-rw-r--r-- | bin/ksh/tree.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/ksh/tree.c b/bin/ksh/tree.c index bb728de106e..7ad4704e0fd 100644 --- a/bin/ksh/tree.c +++ b/bin/ksh/tree.c @@ -1,9 +1,11 @@ -/* $OpenBSD: tree.c,v 1.25 2015/10/09 19:36:27 tedu Exp $ */ +/* $OpenBSD: tree.c,v 1.26 2015/10/19 14:42:16 mmcc Exp $ */ /* * command tree climbing */ +#include <string.h> + #include "sh.h" #define INDENT 4 |