- Implement all the state switching stuff needed for efficient fpu mode
[libfirm] / ir / adt / xmalloc.c
index 73b9cbe..07252a6 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"
+#include "error.h"
+
+static NORETURN xnomem(void) {
+  panic("out of memory");
+}
 
-void *
-xmalloc(size_t size) {
-  void *res = malloc (size);
+void *xmalloc(size_t size) {
+  void *res = malloc(size);
 
   if (!res) xnomem();
   return res;
 }
 
 void *xcalloc(size_t num, size_t size) {
-  void res = calloc(num, size);
+  void *res = calloc(num, size);
 
   if (!res) xnomem();
   return res;
 }
 
-void *
-xrealloc(void *ptr, size_t size) {
+void *xrealloc(void *ptr, size_t size) {
   /* ANSI blesses realloc (0, x) but SunOS chokes on it */
   void *res = ptr ? realloc (ptr, size) : malloc (size);
 
-  if (!res) xnomem ();
+  if (!res) xnomem();
   return res;
 }
 
-
-char *
-xstrdup(const char *str) {
+char *xstrdup(const char *str) {
   size_t len = strlen (str) + 1;
-  return memcpy ((xmalloc) (len), str, len);
-}
-
-
-void
-xnomem(void) {
-  panic("out of memory");
+  return memcpy((xmalloc) (len), str, len);
 }