1
0
Fork 0
forked from len0rd/rockbox

missing #define for VC++

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@471 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Stefan Meyer 2002-05-06 11:12:07 +00:00
parent ee77969109
commit 6c25733946

View file

@ -23,7 +23,7 @@ extern void debugf(char* fmt,...);
#ifdef __GNUC__ #ifdef __GNUC__
/* GCC handles ellipses in macros, which /* GCC handles ellipses in macros, which
means we can avoid the call completely */ means we can avoid the call completely */
#ifdef DEBUG #ifdef DEBUG
#define DEBUGF(fmt,args...) debugf(fmt, ## args) #define DEBUGF(fmt,args...) debugf(fmt, ## args)
@ -33,7 +33,7 @@ extern void debugf(char* fmt,...);
#else #else
void DEBUGF debugf #define DEBUGF debugf
#endif /* GCC */ #endif /* GCC */