summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorStefan Meyer <calpefrosch@rockbox.org>2002-05-06 11:12:07 +0000
committerStefan Meyer <calpefrosch@rockbox.org>2002-05-06 11:12:07 +0000
commit6c25733946c6da5524d2a89bc70ed41f13384cb0 (patch)
tree885fff0bc5f4a95fa221102d3bc09e75b12c988b /firmware
parentee77969109b2b7493df2e393f69816b1c61d32ef (diff)
downloadrockbox-6c25733946c6da5524d2a89bc70ed41f13384cb0.tar.gz
rockbox-6c25733946c6da5524d2a89bc70ed41f13384cb0.zip
missing #define for VC++
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@471 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/debug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/debug.h b/firmware/debug.h
index adedfd9546..0f6b1eed64 100644
--- a/firmware/debug.h
+++ b/firmware/debug.h
@@ -23,7 +23,7 @@ extern void debugf(char* fmt,...);
23 23
24#ifdef __GNUC__ 24#ifdef __GNUC__
25 25
26/* GCC handles ellipses in macros, which 26/* GCC handles ellipses in macros, which
27 means we can avoid the call completely */ 27 means we can avoid the call completely */
28#ifdef DEBUG 28#ifdef DEBUG
29#define DEBUGF(fmt,args...) debugf(fmt, ## args) 29#define DEBUGF(fmt,args...) debugf(fmt, ## args)
@@ -33,7 +33,7 @@ extern void debugf(char* fmt,...);
33 33
34#else 34#else
35 35
36void DEBUGF debugf 36#define DEBUGF debugf
37 37
38#endif /* GCC */ 38#endif /* GCC */
39 39