aboutsummaryrefslogtreecommitdiff
path: root/editors/vi.c
diff options
context:
space:
mode:
authoraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-05-19 12:30:00 +0000
committeraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-05-19 12:30:00 +0000
commit2a3cf942949522c245ed5525018dc9c205d642b1 (patch)
tree91766f417783ee69b93d44f1a39a70e874285f98 /editors/vi.c
parentbd16aecbd1d9654275c751a884a714bd4f99386e (diff)
downloadbusybox-w32-2a3cf942949522c245ed5525018dc9c205d642b1.tar.gz
busybox-w32-2a3cf942949522c245ed5525018dc9c205d642b1.tar.bz2
busybox-w32-2a3cf942949522c245ed5525018dc9c205d642b1.zip
- include strings.h
Thanks to Rich Felker for pointing this out. git-svn-id: svn://busybox.net/trunk/busybox@15124 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'editors/vi.c')
-rw-r--r--editors/vi.c1
1 files changed, 1 insertions, 0 deletions
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>