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/edit.c | |
parent | bf8e653e0ed5cc4d80751a521c33704edfc66a43 (diff) |
Move string.h include from sh.h to the files that use it.
ok nicm@
Diffstat (limited to 'bin/ksh/edit.c')
-rw-r--r-- | bin/ksh/edit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/ksh/edit.c b/bin/ksh/edit.c index 54952e91f7e..ed2f9a3babc 100644 --- a/bin/ksh/edit.c +++ b/bin/ksh/edit.c @@ -1,4 +1,4 @@ -/* $OpenBSD: edit.c,v 1.47 2015/10/19 02:15:45 mmcc Exp $ */ +/* $OpenBSD: edit.c,v 1.48 2015/10/19 14:42:16 mmcc Exp $ */ /* * Command line editing - common code @@ -13,6 +13,7 @@ #include <ctype.h> #include <libgen.h> +#include <string.h> #include "sh.h" #include "edit.h" |