Remove unused variable.
[libfirm] / ir / adt / hungarian.c
index 26bd53a..32f1d68 100644 (file)
@@ -29,9 +29,7 @@
  * @brief   Solving the Minimum Assignment Problem using the Hungarian Method.
  * @version $Id$
  */
-#ifdef HAVE_CONFIG_H
-# include "config.h"
-#endif
+#include "config.h"
 
 #include <stdio.h>
 #include <stdlib.h>
@@ -60,7 +58,7 @@ struct _hungarian_problem_t {
        DEBUG_ONLY(firm_dbg_module_t *dbg);
 };
 
-static INLINE void *get_init_mem(struct obstack *obst, long sz) {
+static inline void *get_init_mem(struct obstack *obst, long sz) {
        void *p = obstack_alloc(obst, sz);
        memset(p, 0, sz);
        return p;