Make sure stdlib.h is always included before dmalloc.h to avoid problems
authorManuel Novoa III <mjn3@codepoet.org>
Thu, 5 Feb 2004 14:45:58 +0000 (14:45 -0000)
committerManuel Novoa III <mjn3@codepoet.org>
Thu, 5 Feb 2004 14:45:58 +0000 (14:45 -0000)
parsing problems.

include/busybox.h
include/libbb.h

index 28ea2530f5645be2ae2913fa1c831657dbfe4ac1..ba4edcabaf9d7d7e33a602955e23d771376c2e59 100644 (file)
@@ -27,6 +27,7 @@
 #include "config.h"
 
 #include <stdio.h>
+#include <stdlib.h>
 #include <stdarg.h>
 #include <sys/stat.h>
 #include <sys/types.h>
index 86e4fbea7797aae44fdae39e9cdc14d61571cecf..15e3e49cff7d4ec587c4ec47ff8f0dfe39248a45 100644 (file)
@@ -25,6 +25,7 @@
 #define        __LIBCONFIG_H__    1
 
 #include <stdio.h>
+#include <stdlib.h>
 #include <stdarg.h>
 #include <sys/stat.h>
 #include <sys/types.h>