Fixed a bug in frequencies.q which would crash on alpha values
[pspp-builds.git] / src / alloc.c
index 763dab3d720ecbf482e94757ca41dad6b621b7bd..267bf2baec09c652807d24cae3a879f128c393c3 100644 (file)
@@ -18,6 +18,7 @@
    02111-1307, USA. */
 
 #include <config.h>
+#include "alloc.h"
 #include <assert.h>
 #include <stdio.h>
 #include <stdlib.h>
@@ -112,11 +113,6 @@ xstrdup (const char *s)
 static void
 out_of_memory (void)
 {
-#if __CHECKER__
-  fprintf (stderr, "Out of memory: inducing segfault\n");
-  *((int *) 0) = 0;
-#else
   fprintf (stderr, "virtual memory exhausted\n");
   exit (EXIT_FAILURE);
-#endif
 }