diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-02-20 06:14:08 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-02-20 06:14:08 +0000 |
commit | cbe31dace5fb24304694d399b9eb267fbe752516 (patch) | |
tree | 49d1bb722d95eb1aded6b5d354ac86e56c481c10 /shell | |
parent | 94456f598417f2f61edb97b5ab67ddfdc408ad10 (diff) | |
download | busybox-w32-cbe31dace5fb24304694d399b9eb267fbe752516.tar.gz busybox-w32-cbe31dace5fb24304694d399b9eb267fbe752516.tar.bz2 busybox-w32-cbe31dace5fb24304694d399b9eb267fbe752516.zip |
It turns out that DODMALLOC was broken when I reorganized busybox.h
header file usage before the 0.49 release. To fix it, I had to move
the '#include "busybox.h"' to the end of the list of #include files.
-Erik
Diffstat (limited to 'shell')
-rw-r--r-- | shell/cmdedit.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/shell/cmdedit.c b/shell/cmdedit.c index 97ba8316d..9cb53522f 100644 --- a/shell/cmdedit.c +++ b/shell/cmdedit.c | |||
@@ -32,6 +32,21 @@ | |||
32 | 32 | ||
33 | //#define TEST | 33 | //#define TEST |
34 | 34 | ||
35 | #include <stdio.h> | ||
36 | #include <errno.h> | ||
37 | #include <unistd.h> | ||
38 | #include <stdlib.h> | ||
39 | #include <string.h> | ||
40 | #include <sys/ioctl.h> | ||
41 | #include <ctype.h> | ||
42 | #include <signal.h> | ||
43 | #include <limits.h> | ||
44 | |||
45 | #ifdef BB_FEATURE_SH_TAB_COMPLETION | ||
46 | #include <dirent.h> | ||
47 | #include <sys/stat.h> | ||
48 | #endif | ||
49 | |||
35 | 50 | ||
36 | #ifndef TEST | 51 | #ifndef TEST |
37 | 52 | ||
@@ -62,21 +77,6 @@ | |||
62 | #define BB_FEATURE_GETUSERNAME_AND_HOMEDIR | 77 | #define BB_FEATURE_GETUSERNAME_AND_HOMEDIR |
63 | #endif | 78 | #endif |
64 | 79 | ||
65 | #include <stdio.h> | ||
66 | #include <errno.h> | ||
67 | #include <unistd.h> | ||
68 | #include <stdlib.h> | ||
69 | #include <string.h> | ||
70 | #include <sys/ioctl.h> | ||
71 | #include <ctype.h> | ||
72 | #include <signal.h> | ||
73 | #include <limits.h> | ||
74 | |||
75 | #ifdef BB_FEATURE_SH_TAB_COMPLETION | ||
76 | #include <dirent.h> | ||
77 | #include <sys/stat.h> | ||
78 | #endif | ||
79 | |||
80 | #ifdef BB_FEATURE_GETUSERNAME_AND_HOMEDIR | 80 | #ifdef BB_FEATURE_GETUSERNAME_AND_HOMEDIR |
81 | #ifndef TEST | 81 | #ifndef TEST |
82 | #include "pwd_grp/pwd.h" | 82 | #include "pwd_grp/pwd.h" |