aboutsummaryrefslogtreecommitdiff
path: root/include/busybox.h
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-01-02 01:16:38 +0000
committerEric Andersen <andersen@codepoet.org>2001-01-02 01:16:38 +0000
commit01bda5de6b983cf331c42cb64fa2ccd4308b423d (patch)
tree363d4c2ee9254618b05b594ab89e9d2861587549 /include/busybox.h
parent27c7bec4d4d3dffba20a30cab7ba23e83fd5283f (diff)
downloadbusybox-01bda5de6b983cf331c42cb64fa2ccd4308b423d.tar.gz
Better dmalloc handling
Diffstat (limited to 'include/busybox.h')
-rw-r--r--include/busybox.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/busybox.h b/include/busybox.h
index ae256fe7b..a89ac3694 100644
--- a/include/busybox.h
+++ b/include/busybox.h
@@ -26,10 +26,6 @@
#include "Config.h"
-#ifdef DMALLOC
-#include "dmalloc.h"
-#endif
-
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
@@ -37,12 +33,16 @@
#include <errno.h>
#include <sys/stat.h>
#include <sys/param.h>
+#include <sys/types.h>
#include <mntent.h>
#include <regex.h>
/* for the _syscall() macros */
#include <sys/syscall.h>
#include <linux/unistd.h>
+#ifdef DMALLOC
+#include "dmalloc.h"
+#endif
/* Some useful definitions */
#define FALSE ((int) 0)
@@ -183,7 +183,7 @@ extern void xregcomp(regex_t *preg, const char *regex, int cflags);
extern FILE *wfopen(const char *path, const char *mode);
extern FILE *xfopen(const char *path, const char *mode);
-#ifndef DMALLOC
+#ifndef DMALLOC
extern void *xmalloc (size_t size);
extern void *xrealloc(void *old, size_t size);
extern void *xcalloc(size_t nmemb, size_t size);