aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2002-11-24 01:32:56 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2002-11-24 01:32:56 +0000
commit7b1eca265a023dd09da5161588ddd50f3c0ec263 (patch)
tree1d69a57845aa714a9c72dd879ca3230f141b1372
parentb7a76df4d1146940e10fd643828bcc53a824b6aa (diff)
downloadbusybox-w32-7b1eca265a023dd09da5161588ddd50f3c0ec263.tar.gz
busybox-w32-7b1eca265a023dd09da5161588ddd50f3c0ec263.tar.bz2
busybox-w32-7b1eca265a023dd09da5161588ddd50f3c0ec263.zip
include libbb after stdlib.h as it breaks dmalloc
-rw-r--r--libbb/procps.c3
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
21extern procps_status_t * procps_scan(int save_user_arg0) 20extern procps_status_t * procps_scan(int save_user_arg0)
22{ 21{