X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=ir%2Fir%2Firprintf_t.h;h=5592d15d69ad19fc2134434320be779ed7045e94;hb=8f355cb9b3d20c10f71d1b1e17cbf59a51ced83b;hp=33af3bda1983b956d3d47786b067e911c83afab5;hpb=eb08138c6b80c169945568e4414f491a9bc20388;p=libfirm diff --git a/ir/ir/irprintf_t.h b/ir/ir/irprintf_t.h index 33af3bda1..5592d15d6 100644 --- a/ir/ir/irprintf_t.h +++ b/ir/ir/irprintf_t.h @@ -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. * @@ -17,18 +17,15 @@ * 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 _IRPRINTF_T_H -#define _IRPRINTF_T_H +#ifndef FIRM_IR_IRPRINTF_T_H +#define FIRM_IR_IRPRINTF_T_H #include "firm_config.h" #include "irprintf.h" @@ -42,13 +39,15 @@ static INLINE void ir_debugf(const char *fmt, ...) { + (void) fmt; } static INLINE void ir_fdebugf(FILE *f, const char *fmt, ...) { + (void) f; + (void) fmt; } #endif - #endif