Mercurial > mplayer.hg
view loader/debug.h @ 24831:8fe8b0d9deec
Remove assert. Not only are they no help at all and proper checks should
be added if desired, also assert.h is not included so compilation may fail.
author | reimar |
---|---|
date | Sat, 27 Oct 2007 06:47:35 +0000 |
parents | a2e02e6b6379 |
children | 6ac1ece1f9fe |
line wrap: on
line source
#ifdef DEBUG #define TRACE printf #define dbg_printf printf #else #define TRACE(...) #define dbg_printf(...) #endif