mirror of
https://github.com/mpv-player/mpv
synced 2024-12-12 09:56:30 +00:00
10 lines
140 B
C
10 lines
140 B
C
|
#include "../config.h"
|
||
|
|
||
|
#ifdef DEBUG
|
||
|
#define TRACE printf
|
||
|
#define dbg_printf printf
|
||
|
#else
|
||
|
#define TRACE(...)
|
||
|
#define dbg_printf(...)
|
||
|
#endif
|