valueset: Remove the unused link field.
[libfirm] / ir / adt / xmalloc.c
index 4f2ba33..47ee427 100644 (file)
@@ -28,6 +28,7 @@
 #include "config.h"
 
 #include <string.h>
+#include <stdio.h>
 #include <stdlib.h>
 
 #include "xmalloc.h"
@@ -37,6 +38,7 @@ static NORETURN xnomem(void)
 {
        /* Do not use panic() here, because it might try to allocate memory! */
        fputs("out of memory", stderr);
+       abort();
 }
 
 void *xmalloc(size_t size)