Fixed the last fix again:
[libfirm] / ir / tr / type_or_entity.h
index 54de00b..eee03ed 100644 (file)
@@ -1,33 +1,38 @@
 /*
- * Project:     libFIRM
- * File name:   ir/tr/type_or_entity.h
- * Purpose:     Provides a datatype to treat types and entities as the same.
- * Author:      Goetz Lindenmaier
- * Modified by:
- * Created:
- * CVS-ID:      $Id$
- * Copyright:   (c) 1999-2003 Universität Karlsruhe
- * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
- */
-
-/**
- * @file type_or_entity.h
+ * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
+ *
+ * This file is part of libFirm.
  *
- * Provides a datatype to treat types and entities as the same.
+ * This file may be distributed and/or modified under the terms of the
+ * GNU General Public License version 2 as published by the Free Software
+ * Foundation and appearing in the file LICENSE.GPL included in the
+ * packaging of this file.
  *
- * @author Goetz Lindenmaier
+ * Licensees holding valid libFirm Professional Edition licenses may use
+ * this file in accordance with the libFirm Commercial License.
+ * Agreement provided with the Software.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
+ * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+ * PURPOSE.
  */
 
-# ifndef _TYPE_OR_ENTITY_H_
-# define _TYPE_OR_ENTITY_H_
+/**
+ * @file
+ * @brief     Provides a datatype to treat types and entities as the same.
+ * @author    Goetz Lindenmaier
+ * @version   $Id$
+ */
+#ifndef FIRM_TR_TYPE_OR_ENTITY_H
+#define FIRM_TR_TYPE_OR_ENTITY_H
 
 #include "firm_types.h"
 
 /** A data type to treat types and entities as the same. */
 typedef union {
-  ir_type *typ;     /**< points to a type */
-  entity  *ent;     /**< points to an entity */
+  ir_type   *typ;   /**< points to a type */
+  ir_entity *ent;   /**< points to an entity */
 } type_or_ent;
 
 
-# endif /* _TYPE_OR_ENTITY_H_ */
+# endif /* FIRM_TR_TYPE_OR_ENTITY_H */