* npar-binomial.sh: Be less picky about whitespace in PSPP output.
[pspp-builds.git] / src / libpspp / alloc.h
index 0f4492e391898342363b1df9ad4be672022cedb3..79a6a97e6b14af329eac3516c92fddb0694e81a0 100644 (file)
@@ -1,6 +1,5 @@
 /* PSPP - computes sample statistics.
    Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
-   Written by Ben Pfaff <blp@gnu.org>.
 
    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License as
@@ -28,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