Additional nested includes for malloc_zone.h required on some OS's.
--- trunk/compat/malloc_zone.h 2009-09-14 20:53:29 UTC (rev 30)
+++ trunk/compat/malloc_zone.h 2009-09-15 09:43:14 UTC (rev 31)
@@ -21,6 +21,10 @@
#ifndef __MALLOC_ZONE_H__
#define __MALLOC_ZONE_H__
+#include <sys/types.h>
+
+#include <stdlib.h>
+
/*
* Implement malloc zones as a simple wrapper around malloc(3) on systems
* that don't support them.