diff options
Diffstat (limited to 'gcc/system.h')
-rwxr-xr-x | gcc/system.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/system.h b/gcc/system.h index b2f1d1e..1022bbd 100755 --- a/gcc/system.h +++ b/gcc/system.h @@ -102,6 +102,9 @@ Boston, MA 02111-1307, USA. */ #define _(String) String #define N_(String) String -#include "libiberty.h" +extern void *xmalloc (size_t); +extern void *xrealloc (void *, size_t); +extern void *xcalloc (size_t, size_t); +extern char *xstrdup (const char *); #endif /* __GCC_SYSTEM_H__ */ |