diff options
author | Bernhard Reutner-Fischer | 2005-09-21 17:38:30 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer | 2005-09-21 17:38:30 +0000 |
commit | d4cffd1cc3437910393c319215d14bd2dcaa4df6 (patch) | |
tree | 64eb4c7f01785a0f2cfedd2001f9df8ef260ddef /include/busybox.h | |
parent | cef737f03817d8e5fafcc48e7ffda479e0e25f87 (diff) | |
download | busybox-d4cffd1cc3437910393c319215d14bd2dcaa4df6.zip busybox-d4cffd1cc3437910393c319215d14bd2dcaa4df6.tar.gz |
- make sure to include dmalloc.h at the very end of busybox.h or libbb.h.
Diffstat (limited to 'include/busybox.h')
-rw-r--r-- | include/busybox.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/busybox.h b/include/busybox.h index e7ed135..4870871 100644 --- a/include/busybox.h +++ b/include/busybox.h @@ -44,10 +44,6 @@ #define BB_BANNER "BusyBox v" BB_VER " (" BB_EXTRA_VERSION ")" #endif -#ifdef DMALLOC -#include <dmalloc.h> -#endif - #include <features.h> /* Pull in the utility routines from libbb */ @@ -118,4 +114,8 @@ extern const struct BB_applet applets[]; #define PATH_MAX 256 #endif +#ifdef DMALLOC +#include <dmalloc.h> +#endif + #endif /* _BB_INTERNAL_H_ */ |