Changed a lot of non-const pointers to const.
[pspp-builds.git] / src / libpspp / alloc.h
index 20ffdc3a8341b1af50cea33d91ba0df728aee7f0..79a6a97e6b14af329eac3516c92fddb0694e81a0 100644 (file)
@@ -27,7 +27,7 @@
 void *nmalloc (size_t n, size_t s);
 
 /* alloca() wrapper functions. */
-#if defined (HAVE_ALLOCA) || defined (C_ALLOCA)
+#if defined HAVE_ALLOCA || defined C_ALLOCA
 #ifdef HAVE_ALLOCA_H
 #include <alloca.h>
 #endif