Add the return type as parameter to the macros set_find() and set_insert().
[libfirm] / ir / adt / xmalloc.c
1 /*
2  * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief       implementation of xmalloc & friends
23  * @author      Markus Armbruster
24  */
25
26 /* @@@ ToDo: replace this file with the one from liberty.
27    [reimplement xstrdup, ... ] */
28 #include "config.h"
29
30 #include <string.h>
31 #include <stdio.h>
32 #include <stdlib.h>
33
34 #include "xmalloc.h"
35 #include "error.h"
36
37 static NORETURN xnomem(void)
38 {
39         /* Do not use panic() here, because it might try to allocate memory! */
40         fputs("out of memory", stderr);
41         abort();
42 }
43
44 void *xmalloc(size_t size)
45 {
46         void *res = malloc(size);
47
48         if (!res) xnomem();
49         return res;
50 }
51
52 void *xrealloc(void *ptr, size_t size)
53 {
54         /* ANSI blesses realloc (0, x) but SunOS chokes on it */
55         void *res = ptr ? realloc (ptr, size) : malloc (size);
56
57         if (!res) xnomem();
58         return res;
59 }
60
61 char *xstrdup(const char *str)
62 {
63         size_t len = strlen (str) + 1;
64         return (char*) memcpy(xmalloc(len), str, len);
65 }