fix weak external functions
[libfirm] / ir / ir / irprintf_t.h
index 33af3bd..b36eaa0 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
+ * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
  *
  * This file is part of libFirm.
  *
  * PURPOSE.
  */
 
-/*
- * Project:     libFIRM
- * File name:   ir/ir/irprintf_t.h
- * Purpose:     A little printf understanding some firm types.
- * Author:      Sebastian Hack
- * Created:     29.11.2004
- * CVS-ID:      $Id$
- * Copyright:   (c) 1998-2004 Universität Karlsruhe
+/**
+ * @file
+ * @brief   A little printf understanding some firm types.
+ * @author  Sebastian Hack
+ * @date    29.11.2004
+ * @version $Id$
  */
+#ifndef FIRM_IR_IRPRINTF_T_H
+#define FIRM_IR_IRPRINTF_T_H
 
-#ifndef _IRPRINTF_T_H
-#define _IRPRINTF_T_H
-
-#include "firm_config.h"
 #include "irprintf.h"
 
 #ifdef DEBUG_libfirm
 
 #else
 
-static INLINE void ir_debugf(const char *fmt, ...)
+static inline void ir_debugf(const char *fmt, ...)
 {
+       (void) fmt;
 }
 
-static INLINE void ir_fdebugf(FILE *f, const char *fmt, ...)
+static inline void ir_fdebugf(FILE *f, const char *fmt, ...)
 {
+       (void) f;
+       (void) fmt;
 }
 
 #endif
 
-
 #endif