diff options
author | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-11-24 01:32:56 +0000 |
---|---|---|
committer | bug1 <bug1@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2002-11-24 01:32:56 +0000 |
commit | f82ac8a574b6f997c9b71638ad5869f9d340e7ce (patch) | |
tree | 1d69a57845aa714a9c72dd879ca3230f141b1372 /libbb | |
parent | 6a9cee84731655d23626fc6fa13fa4e015170e10 (diff) | |
download | busybox-w32-f82ac8a574b6f997c9b71638ad5869f9d340e7ce.tar.gz busybox-w32-f82ac8a574b6f997c9b71638ad5869f9d340e7ce.tar.bz2 busybox-w32-f82ac8a574b6f997c9b71638ad5869f9d340e7ce.zip |
include libbb after stdlib.h as it breaks dmalloc
git-svn-id: svn://busybox.net/trunk/busybox@6008 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb')
-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 9ac5be092..eea6aa681 100644 --- a/libbb/procps.c +++ b/libbb/procps.c | |||
@@ -8,8 +8,6 @@ | |||
8 | * | 8 | * |
9 | */ | 9 | */ |
10 | 10 | ||
11 | #include "libbb.h" | ||
12 | |||
13 | #if ! defined CONFIG_FEATURE_USE_DEVPS_PATCH | 11 | #if ! defined CONFIG_FEATURE_USE_DEVPS_PATCH |
14 | #include <dirent.h> | 12 | #include <dirent.h> |
15 | #include <string.h> | 13 | #include <string.h> |
@@ -17,6 +15,7 @@ | |||
17 | #include <unistd.h> | 15 | #include <unistd.h> |
18 | #include <asm/page.h> | 16 | #include <asm/page.h> |
19 | 17 | ||
18 | #include "libbb.h" | ||
20 | 19 | ||
21 | extern procps_status_t * procps_scan(int save_user_arg0) | 20 | extern procps_status_t * procps_scan(int save_user_arg0) |
22 | { | 21 | { |