view loader/debug.h @ 33946:8d7f3f0b7343

Intel C Compiler 12.0 is supported, 11.0 is not.
author cehoyos
date Thu, 01 Sep 2011 17:16:49 +0000
parents a8ea87c71d18
children
line wrap: on
line source

#ifndef MPLAYER_DEBUG_H
#define MPLAYER_DEBUG_H

#ifdef DEBUG
#define TRACE printf
#define dbg_printf printf
#else
#define TRACE(...)
#define dbg_printf(...)
#endif

#endif /* MPLAYER_DEBUG_H */