X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Flpp%2Fmps.h;h=93efbce061e3311ecc2ea6a51e6ee34cf3421c65;hb=fe6c9130a81330693ec34a0e2a261ccf47b48599;hp=d28c4f1e9e285f6588233d9d0d98df5a4f163ccf;hpb=780ca0cd82979273de26bd01971bc5547e7aa609;p=libfirm diff --git a/ir/lpp/mps.h b/ir/lpp/mps.h index d28c4f1e9..93efbce06 100644 --- a/ir/lpp/mps.h +++ b/ir/lpp/mps.h @@ -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 #include "lpp.h" @@ -18,18 +17,18 @@ * 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