From cbe31dace5fb24304694d399b9eb267fbe752516 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Tue, 20 Feb 2001 06:14:08 +0000 Subject: 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 --- cmdedit.c | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'cmdedit.c') diff --git a/cmdedit.c b/cmdedit.c index 97ba8316d..9cb53522f 100644 --- a/cmdedit.c +++ b/cmdedit.c @@ -32,6 +32,21 @@ //#define TEST +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#ifdef BB_FEATURE_SH_TAB_COMPLETION +#include +#include +#endif + #ifndef TEST @@ -62,21 +77,6 @@ #define BB_FEATURE_GETUSERNAME_AND_HOMEDIR #endif -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#ifdef BB_FEATURE_SH_TAB_COMPLETION -#include -#include -#endif - #ifdef BB_FEATURE_GETUSERNAME_AND_HOMEDIR #ifndef TEST #include "pwd_grp/pwd.h" -- cgit v1.2.3