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/io.c | |
parent | bf8e653e0ed5cc4d80751a521c33704edfc66a43 (diff) |
Move string.h include from sh.h to the files that use it.
ok nicm@
Diffstat (limited to 'bin/ksh/io.c')
-rw-r--r-- | bin/ksh/io.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/ksh/io.c b/bin/ksh/io.c index 4d220555acd..a035ede507a 100644 --- a/bin/ksh/io.c +++ b/bin/ksh/io.c @@ -1,4 +1,4 @@ -/* $OpenBSD: io.c,v 1.31 2015/10/19 02:15:45 mmcc Exp $ */ +/* $OpenBSD: io.c,v 1.32 2015/10/19 14:42:16 mmcc Exp $ */ /* * shell buffered IO and formatted output @@ -7,6 +7,7 @@ #include <sys/stat.h> #include <ctype.h> +#include <string.h> #include "sh.h" |