diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-05-19 12:30:00 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-05-19 12:30:00 +0000 |
commit | a2a647dfc1c003eacc53c2abe744ba4b3d7b2fbc (patch) | |
tree | 91766f417783ee69b93d44f1a39a70e874285f98 /editors | |
parent | a85a63f6ee9f5815887158976bbf6b9a5a441db4 (diff) | |
download | busybox-w32-a2a647dfc1c003eacc53c2abe744ba4b3d7b2fbc.tar.gz busybox-w32-a2a647dfc1c003eacc53c2abe744ba4b3d7b2fbc.tar.bz2 busybox-w32-a2a647dfc1c003eacc53c2abe744ba4b3d7b2fbc.zip |
- include strings.h
Thanks to Rich Felker for pointing this out.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/awk.c | 1 | ||||
-rw-r--r-- | editors/vi.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/editors/awk.c b/editors/awk.c index 9c8bef53a..f4eb1ab90 100644 --- a/editors/awk.c +++ b/editors/awk.c | |||
@@ -12,6 +12,7 @@ | |||
12 | #include <unistd.h> | 12 | #include <unistd.h> |
13 | #include <errno.h> | 13 | #include <errno.h> |
14 | #include <string.h> | 14 | #include <string.h> |
15 | #include <strings.h> | ||
15 | #include <time.h> | 16 | #include <time.h> |
16 | #include <math.h> | 17 | #include <math.h> |
17 | #include <ctype.h> | 18 | #include <ctype.h> |
diff --git a/editors/vi.c b/editors/vi.c index 9aacae439..0c0c930b9 100644 --- a/editors/vi.c +++ b/editors/vi.c | |||
@@ -53,6 +53,7 @@ | |||
53 | #include <stdio.h> | 53 | #include <stdio.h> |
54 | #include <stdlib.h> | 54 | #include <stdlib.h> |
55 | #include <string.h> | 55 | #include <string.h> |
56 | #include <strings.h> | ||
56 | #include <termios.h> | 57 | #include <termios.h> |
57 | #include <unistd.h> | 58 | #include <unistd.h> |
58 | #include <sys/ioctl.h> | 59 | #include <sys/ioctl.h> |