summaryrefslogtreecommitdiffstats
path: root/loader/debug.h
blob: ad3c9d5a464a4c7acf605f3f9a85741e991055a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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 */