summaryrefslogtreecommitdiff
path: root/apps/status.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2007-03-16 23:47:03 +0000
committerJens Arnold <amiconn@rockbox.org>2007-03-16 23:47:03 +0000
commit2c7b127dd77564a8ca8c384d7d1abed441efe110 (patch)
tree95353f6db63c676890176f26fb9f452e8050d547 /apps/status.c
parentc0351ca6338075461565b7ba14b01ba3cabb3f1e (diff)
downloadrockbox-2c7b127dd77564a8ca8c384d7d1abed441efe110.tar.gz
rockbox-2c7b127dd77564a8ca8c384d7d1abed441efe110.zip
Set CONFIG_RTC to 0 for non-RTC targets, and check with #if to profit from -Wundef. No code change.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12811 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/status.c')
-rw-r--r--apps/status.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/status.c b/apps/status.c
index 1551f77d53..468ca19c13 100644
--- a/apps/status.c
+++ b/apps/status.c
@@ -29,7 +29,7 @@
29#include "gwps.h" 29#include "gwps.h"
30#include "abrepeat.h" 30#include "abrepeat.h"
31#include "statusbar.h" 31#include "statusbar.h"
32#ifdef CONFIG_RTC 32#if CONFIG_RTC
33#include "timefuncs.h" 33#include "timefuncs.h"
34#endif 34#endif
35#ifdef HAVE_LCD_BITMAP 35#ifdef HAVE_LCD_BITMAP