mirror of
https://github.com/mpv-player/mpv
synced 2024-12-14 19:05:33 +00:00
2b6af2000b
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25581 b3059339-0415-0410-9bf9-f77b7e298cf2
13 lines
171 B
C
13 lines
171 B
C
#ifndef DEBUG_H
|
|
#define DEBUG_H
|
|
|
|
#ifdef DEBUG
|
|
#define TRACE printf
|
|
#define dbg_printf printf
|
|
#else
|
|
#define TRACE(...)
|
|
#define dbg_printf(...)
|
|
#endif
|
|
|
|
#endif /* DEBUG_H */
|