From: Manuel Novoa III Date: Thu, 5 Feb 2004 14:45:58 +0000 (-0000) Subject: Make sure stdlib.h is always included before dmalloc.h to avoid problems X-Git-Tag: 1_00_pre8~55 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=68474f3b36902ecd903a2d26c06a3d18f3f4bdc5;p=platform%2Fupstream%2Fbusybox.git Make sure stdlib.h is always included before dmalloc.h to avoid problems parsing problems. --- diff --git a/include/busybox.h b/include/busybox.h index 28ea253..ba4edca 100644 --- a/include/busybox.h +++ b/include/busybox.h @@ -27,6 +27,7 @@ #include "config.h" #include +#include #include #include #include diff --git a/include/libbb.h b/include/libbb.h index 86e4fbe..15e3e49 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -25,6 +25,7 @@ #define __LIBCONFIG_H__ 1 #include +#include #include #include #include