comparison loader/debug.h @ 26045:a8ea87c71d18

Add MPLAYER_ prefix to multiple inclusion guards.
author diego
date Sat, 23 Feb 2008 14:50:55 +0000
parents 6ac1ece1f9fe
children
comparison
equal deleted inserted replaced
26044:7a541b991b85 26045:a8ea87c71d18
1 #ifndef DEBUG_H 1 #ifndef MPLAYER_DEBUG_H
2 #define DEBUG_H 2 #define MPLAYER_DEBUG_H
3 3
4 #ifdef DEBUG 4 #ifdef DEBUG
5 #define TRACE printf 5 #define TRACE printf
6 #define dbg_printf printf 6 #define dbg_printf printf
7 #else 7 #else
8 #define TRACE(...) 8 #define TRACE(...)
9 #define dbg_printf(...) 9 #define dbg_printf(...)
10 #endif 10 #endif
11 11
12 #endif /* DEBUG_H */ 12 #endif /* MPLAYER_DEBUG_H */