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:
parent
ee77969109
commit
6c25733946
1 changed files with 2 additions and 2 deletions
|
@ -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 */
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue