1
0
Fork 0
forked from len0rd/rockbox

Codec test plugins: use DEBUGF() instead of (not cleanly avaliable) printf().

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6052 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2005-02-25 00:46:41 +00:00
parent 6e372abb0e
commit cb78646baf
4 changed files with 5 additions and 22 deletions

View file

@ -19,15 +19,6 @@
/* Various "helper functions" common to all the xxx2wav decoder plugins */
/* A macro to enable printf for the simulator only */
#ifdef SIMULATOR
#define dprintf(...) printf(__VA_ARGS__)
#else
#define dprintf(...)
#endif
/* the main data structure of the program */
typedef struct {
int infile;