Mercurial > mplayer.hg
diff loader/debug.h @ 25553:6ac1ece1f9fe
Add multiple inclusion guards to all header files that lack them.
| author | diego |
|---|---|
| date | Tue, 01 Jan 2008 21:35:58 +0000 |
| parents | a2e02e6b6379 |
| children | a8ea87c71d18 |
line wrap: on
line diff
--- a/loader/debug.h Tue Jan 01 21:20:06 2008 +0000 +++ b/loader/debug.h Tue Jan 01 21:35:58 2008 +0000 @@ -1,3 +1,6 @@ +#ifndef DEBUG_H +#define DEBUG_H + #ifdef DEBUG #define TRACE printf #define dbg_printf printf @@ -5,3 +8,5 @@ #define TRACE(...) #define dbg_printf(...) #endif + +#endif /* DEBUG_H */
