Convert comments to doxygen
[libfirm] / ir / tr / type_or_entity.h
1 /* Copyright (C) 1998 - 2000 by Universitaet Karlsruhe
2
3 * All rights reserved.
4 *
5 * Author: Goetz Lindenmaier
6 *
7 */
8
9 /* $Id$ */
10
11 /* A datatype to treat types and entities as the same. */
12
13 # ifndef _TYPE_OR_ENTITY_H_
14 # define _TYPE_OR_ENTITY_H_
15
16 typedef union {
17   struct type   *typ;
18   struct entity *ent;
19 } type_or_ent;
20
21
22 # endif /* _TYPE_OR_ENTITY_H_ */