crude -g implementation
[cparser] / adt / obst.h
1 /**
2  * @file
3  * @date    17.03.2007
4  * @brief   Makes using obstack.h easier by including obstack_chunk_alloc and
5  *          obstack_chunk_free
6  * @author  Martin Trapp, Christian Schaefer
7  * @version $Id$
8  */
9 #include "obstack.h"
10 #include "xmalloc.h"
11
12 #define obstack_chunk_alloc xmalloc
13 #define obstack_chunk_free  free