Revision
31
Author
robert@fledge.watson.org
Date
2009-09-15 02:43:14 -0700 (Tue, 15 Sep 2009)

Log Message

Additional nested includes for malloc_zone.h required on some OS's.

Modified Paths

Diff

Modified: trunk/compat/malloc_zone.h (30 => 31)


--- 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.