view loader/debug.h @ 36805:1471cf0a74f7

vcd: make high memory safe on OS/2 kLIBC DosDevIOCtl() is not high meory(-Zhigh-memory) safe. So allocate vcd structure in a low memory pool using a _lcalloc() on kLIBC.
author komh
date Sun, 23 Feb 2014 12:02:38 +0000
parents a8ea87c71d18
children
line wrap: on
line source

#ifndef MPLAYER_DEBUG_H
#define MPLAYER_DEBUG_H

#ifdef DEBUG
#define TRACE printf
#define dbg_printf printf
#else
#define TRACE(...)
#define dbg_printf(...)
#endif

#endif /* MPLAYER_DEBUG_H */