libFirm
obst.h
1 /*
2  * This file is part of libFirm.
3  * Copyright (C) 2012 University of Karlsruhe.
4  */
5 
11 #ifndef FIRM_ADT_OBST_H
12 #define FIRM_ADT_OBST_H
13 
14 #include "obstack.h"
15 #include "xmalloc.h"
16 
18 #define obstack_chunk_alloc xmalloc
19 #define obstack_chunk_free free
20 
22 #endif