Got rid of pref.h.orig (and pref.h) entirely, moving its contents into
[pspp-builds.git] / src / libpspp / pool.h
index daa866b356110fbc74f4ec313047b1bad8782d14..f2b01fe195522cdf0467ae65f1d2e515c8371b16 100644 (file)
@@ -21,6 +21,7 @@
 #define pool_h 1
 
 #include <stdio.h>
+#include "compiler.h"
 
 /* Maximum size of a suballocated block.  Larger blocks are allocated
    directly with malloc() to avoid memory wastage at the end of a
@@ -91,7 +92,7 @@ int pool_unregister (struct pool *, void *);
 void pool_mark (struct pool *, struct pool_mark *);
 void pool_release (struct pool *, const struct pool_mark *);
 
-#if GLOBAL_DEBUGGING
+#if DEBUGGING
 void pool_dump (const struct pool *, const char *title);
 #endif