Added C++ Krempel :-)
[libfirm] / ir / tr / typegmod.h
index 38d4683..a0e6106 100644 (file)
@@ -1,12 +1,16 @@
 /*
- * typegmod.h
- *
- * (C) 2001 by Universitaet Karlsruhe
- * Goetz Lindenmaier
- *
- * $Id$
+ * Project:     libFIRM
+ * File name:   ir/tr/typegmod.h
+ * Purpose:     Functionality to modify the type graph.
+ * Author:      Goetz Lindenmaier
+ * Modified by:
+ * Created:
+ * CVS-ID:      $Id$
+ * Copyright:   (c) 2001-2003 Universität Karlsruhe
+ * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
  */
 
+
 # ifndef _TYPEGMOD_H_
 # define _TYPEGMOD_H_
 
@@ -33,7 +37,7 @@
  *  @param new_type  - The new type that will replace old_type.
  *
  */
-INLINE void exchange_types(type *old_type, type *new_type);
+void exchange_types(type *old_type, type *new_type);
 
 /**
  *   skip id types until a useful type is reached.
@@ -44,6 +48,6 @@ INLINE void exchange_types(type *old_type, type *new_type);
  *   tp if it is not an id type.
  *   If tp is an id type returns the real type it stands for.
  */
-INLINE type *skip_tid(type *tp);
+type *skip_tid(type *tp);
 
 # endif /*_TYPEGMOD_H_ */