removed unnecessary declarations
[libfirm] / ir / opt / scalar_replace.h
index e5482b9..8c15701 100644 (file)
  * @file
  * @brief   Scalar replacement of compounds.
  * @author  Beyhan Veliev, Michael Beck
- * @version $Id$
  */
 #ifndef FIRM_OPT_SCALAR_REPLACE_H
 #define FIRM_OPT_SCALAR_REPLACE_H
 
 #include "firm_types.h"
+#include <stdbool.h>
 
 /**
  * Returns non-zero, if the address of an entity
- * represented by a Sel node (or it's successor Sels) is taken.
+ * represented by a Sel node (or its successor Sels) is taken.
  *
  * @param sel  the Sel node
  */
-int is_address_taken(ir_node *sel);
+bool is_address_taken(ir_node *sel);
 
 #endif /* FIRM_OPT_SCALAR_REPLACE_H */