diff options
author | Glenn L McGrath | 2002-11-24 01:32:56 +0000 |
---|---|---|
committer | Glenn L McGrath | 2002-11-24 01:32:56 +0000 |
commit | 7b1eca265a023dd09da5161588ddd50f3c0ec263 (patch) | |
tree | 1d69a57845aa714a9c72dd879ca3230f141b1372 | |
parent | b7a76df4d1146940e10fd643828bcc53a824b6aa (diff) | |
download | busybox-7b1eca265a023dd09da5161588ddd50f3c0ec263.zip busybox-7b1eca265a023dd09da5161588ddd50f3c0ec263.tar.gz |
include libbb after stdlib.h as it breaks dmalloc
-rw-r--r-- | libbb/procps.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libbb/procps.c b/libbb/procps.c index 9ac5be0..eea6aa6 100644 --- a/libbb/procps.c +++ b/libbb/procps.c @@ -8,8 +8,6 @@ * */ -#include "libbb.h" - #if ! defined CONFIG_FEATURE_USE_DEVPS_PATCH #include <dirent.h> #include <string.h> @@ -17,6 +15,7 @@ #include <unistd.h> #include <asm/page.h> +#include "libbb.h" extern procps_status_t * procps_scan(int save_user_arg0) { |