- can build without iterator
[libfirm] / include / libfirm / adt / list.h
index 8b8f205..d77eb29 100644 (file)
@@ -16,7 +16,9 @@
 #define FIRM_ADT_LIST_H
 
 #include "firm_config.h"
+#include <stdlib.h>
 
+typedef struct list_head list_head;
 struct list_head {
        struct list_head *next, *prev;
 };