little cleanup
[libfirm] / ir / adt / xmalloc.c
index 73b9cbe..7680c4b 100644 (file)
 #endif
 
 #ifdef HAVE_ALLOCA_H
-#include <alloca.h>
+# include <alloca.h>
 #endif
 #ifdef HAVE_MALLOC_H
-#include <malloc.h>
+# include <malloc.h>
 #endif
 #ifdef HAVE_STRING_H
-#include <string.h>
+# include <string.h>
+#endif
+#ifdef HAVE_STDLIB_H
+# include <stdlib.h>
 #endif
-
-#include <stdlib.h>
 
 #include "xmalloc.h"
 #include "panic.h"
@@ -41,7 +42,7 @@ xmalloc(size_t size) {
 }
 
 void *xcalloc(size_t num, size_t size) {
-  void res = calloc(num, size);
+  void *res = calloc(num, size);
 
   if (!res) xnomem();
   return res;