view loader/debug.h @ 34190:e491bbbddf5d

Fix compilation on Solaris/OpenIndiana where 'uname -m' outputs "i86pc". This fixes a regression since r33887 and bug 1998. Patch by Granville Moore, gvm nemesys com
author cehoyos
date Sun, 30 Oct 2011 17:40:22 +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 */