removed unitialized used vartiable
[libfirm] / ir / be / beraextern.c
index b48acb4..d346450 100644 (file)
@@ -53,18 +53,11 @@ alloc               ::= node-nr reg-nr .
 
 
 ******** End of file format docu ********/
-
+#ifdef NOT_PORTED
 #ifdef HAVE_CONFIG_H
 #include "config.h"
 #endif
 
-#ifdef HAVE_MALLOC_H
- #include <malloc.h>
-#endif
-#ifdef HAVE_ALLOCA_H
- #include <alloca.h>
-#endif
-
 #include <stdio.h>
 #include <stdlib.h>
 #include <limits.h>
@@ -76,6 +69,7 @@ alloc         ::= node-nr reg-nr .
 #include "pmap.h"
 #include "bitset.h"
 #include "raw_bitset.h"
+#include "xmalloc.h"
 
 #include "irprintf_t.h"
 #include "irnode_t.h"
@@ -818,3 +812,5 @@ void be_init_raextern(void) {
        be_register_allocator("ext", &be_ra_external_allocator);
 }
 BE_REGISTER_MODULE_CONSTRUCTOR(be_init_raextern);
+
+#endif