X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fadt%2Fxmalloc.c;h=07252a60d380e917e1314a0256bb47629e691be3;hb=d2dc2564b47d9c113d7e6e598574e9733627fcca;hp=89ab63a4c90805db33ce1e33fcaf0118fbc2f233;hpb=fbcb96cc20a7b5d06136e4c70870e86173e658eb;p=libfirm diff --git a/ir/adt/xmalloc.c b/ir/adt/xmalloc.c index 89ab63a4c..07252a60d 100644 --- a/ir/adt/xmalloc.c +++ b/ir/adt/xmalloc.c @@ -14,47 +14,52 @@ [reimplement xstrdup, ... ] */ #ifdef HAVE_CONFIG_H -# include +# include "config.h" #endif -#include -#include +#ifdef HAVE_ALLOCA_H +# include +#endif +#ifdef HAVE_MALLOC_H +# include +#endif +#ifdef HAVE_STRING_H +# include +#endif +#ifdef HAVE_STDLIB_H +# include +#endif #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 (); + if (!res) xnomem(); return res; } +void *xcalloc(size_t num, size_t 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); }