1
0
Fork 0
forked from len0rd/rockbox

output debugf() nicely for simulator builds too

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@895 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2002-06-04 22:03:21 +00:00
parent d4c9173888
commit fb153c5570
2 changed files with 2 additions and 6 deletions

View file

@ -25,7 +25,7 @@ extern void debugf(char* fmt,...);
#ifdef __GNUC__
/* */
#ifdef DEBUG
#if defined(DEBUG) || defined(SIMULATOR)
#define DEBUGF(...) debugf(__VA_ARGS__)
#else
#define DEBUGF(...)