remove license stuff from files
[libfirm] / include / libfirm / adt / obst.h
1 /*
2  * This file is part of libFirm.
3  * Copyright (C) 2012 University of Karlsruhe.
4  */
5
6 /**
7  * @file
8  * @brief     Provides obstack_chunk_alloc and obstack_chunk_free for obstack.h
9  * @author    Martin Trapp, Christian Schaefer
10  */
11 #ifndef FIRM_ADT_OBST_H
12 #define FIRM_ADT_OBST_H
13
14 #include "obstack.h"
15 #include "xmalloc.h"
16
17 /** @cond PRIVATE */
18 #define obstack_chunk_alloc xmalloc
19 #define obstack_chunk_free  free
20 /** @endcond */
21
22 #endif