bugfix
[libfirm] / ir / ir / irprintf.h
index 1e1a2f6..7945546 100644 (file)
@@ -20,7 +20,8 @@
 #ifndef _IRPRINTF_H
 #define _IRPRINTF_H
 
-#include "config.h"
+#include <stddef.h>
+#include <stdio.h>
 
 /**
  * Something that can append strings and chars to something.
@@ -103,22 +104,5 @@ void ir_fprintf(FILE *f, const char *fmt, ...);
  */
 void ir_snprintf(char *buf, size_t n, const char *fmt, ...);
 
-#ifdef DEBUG_libfirm
-
-#define ir_debugf ir_printf
-#define ir_fdebugf ir_fprintf
-
-#else
-
-static INLINE void ir_debugf(const char *fmt, ...)
-{
-}
-
-static INLINE void ir_fdebugf(FILE *, const char *fmt, ...)
-{
-}
-
-
-#endif
 
 #endif