Let collect_nodes cope with Bad nodes
[libfirm] / ir / lpp / mps.h
index d28c4f1..93efbce 100644 (file)
@@ -4,9 +4,8 @@
  * Copyright:   (c) Universitaet Karlsruhe
  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
  */
-
-#ifndef _MPS_H_
-#define _MPS_H_
+#ifndef MPS_H
+#define MPS_H
 
 #include <stdio.h>
 #include "lpp.h"
  *              and all things have a fixed column... :-0
  * s_mps_free:  mps where whitespace is a seperator :-)
  */
-typedef enum _style_t {s_mps_fixed, s_mps_free} style_t;
+typedef enum {s_mps_fixed, s_mps_free} lpp_mps_style_t;
 
 /**
  * Writes the description of a lp problem object (lpp)
  * to the stream out, using the specified style.
  */
-void mps_write_mps(lpp_t *lpp, style_t style, FILE *out);
+void mps_write_mps(lpp_t *lpp, lpp_mps_style_t style, FILE *out);
 
 /**
  * Writes the start values of a lp problem object (lpp)
  * to the stream out, using the specified style.
  */
-void mps_write_mst(lpp_t *lpp, style_t style, FILE *out);
+void mps_write_mst(lpp_t *lpp, lpp_mps_style_t style, FILE *out);
 
-#endif /*_MPS_H_*/
+#endif