[BusyBox-cvs] busybox/include busybox.h, 1.54, 1.55 libbb.h, 1.125, 1.126
Manuel Novoa III
mjn3 at busybox.net
Thu Feb 5 14:46:00 UTC 2004
Update of /var/cvs/busybox/include
In directory nail:/tmp/cvs-serv8913/include
Modified Files:
busybox.h libbb.h
Log Message:
Make sure stdlib.h is always included before dmalloc.h to avoid problems
parsing problems.
Index: libbb.h
===================================================================
RCS file: /var/cvs/busybox/include/libbb.h,v
retrieving revision 1.125
retrieving revision 1.126
diff -u -d -r1.125 -r1.126
--- libbb.h 17 Jan 2004 05:03:30 -0000 1.125
+++ libbb.h 5 Feb 2004 14:45:58 -0000 1.126
@@ -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>
Index: busybox.h
===================================================================
RCS file: /var/cvs/busybox/include/busybox.h,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -d -r1.54 -r1.55
--- busybox.h 13 Jan 2004 10:57:32 -0000 1.54
+++ busybox.h 5 Feb 2004 14:45:58 -0000 1.55
@@ -27,6 +27,7 @@
#include "config.h"
#include <stdio.h>
+#include <stdlib.h>
#include <stdarg.h>
#include <sys/stat.h>
#include <sys/types.h>
More information about the busybox-cvs
mailing list