diff options
| author | Erik Andersen <andersen@codepoet.org> | 2000-05-20 00:40:08 +0000 |
|---|---|---|
| committer | Erik Andersen <andersen@codepoet.org> | 2000-05-20 00:40:08 +0000 |
| commit | 8ea7d8cdaf4a03cdc06abc8b752b589271140a88 (patch) | |
| tree | 955fc9545f490ca39f0c24629316b7d328612802 /shell | |
| parent | 330fd2b5767110f29544131d4c72c77e0506b6df (diff) | |
| download | busybox-w32-8ea7d8cdaf4a03cdc06abc8b752b589271140a88.tar.gz busybox-w32-8ea7d8cdaf4a03cdc06abc8b752b589271140a88.tar.bz2 busybox-w32-8ea7d8cdaf4a03cdc06abc8b752b589271140a88.zip | |
First pass at fixing tar segfault, and more portability updates.
-Erik
Diffstat (limited to 'shell')
| -rw-r--r-- | shell/cmdedit.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/shell/cmdedit.c b/shell/cmdedit.c index e4c88c265..22831b10c 100644 --- a/shell/cmdedit.c +++ b/shell/cmdedit.c | |||
| @@ -70,6 +70,12 @@ static struct history *his_end = NULL; /* Last element in command line list */ | |||
| 70 | 70 | ||
| 71 | /* Current termio and the previous termio before starting sh */ | 71 | /* Current termio and the previous termio before starting sh */ |
| 72 | struct termios initial_settings, new_settings; | 72 | struct termios initial_settings, new_settings; |
| 73 | |||
| 74 | |||
| 75 | #ifndef _POSIX_VDISABLE | ||
| 76 | #define _POSIX_VDISABLE '\0' | ||
| 77 | #endif | ||
| 78 | |||
| 73 | #endif | 79 | #endif |
| 74 | 80 | ||
| 75 | 81 | ||
