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 28ea253..ba4edca 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 86e4fbe..15e3e49 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>