summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-06-24 08:57:59 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-06-24 08:57:59 +0000
commit6a6217a2e580c7fa6cdfe90763d52c3a399d563a (patch)
tree34737dd6a2ab6881fb78b5f3c6ceef259ae173da
parent3827d4764b306f70a955dd39c9e96dd2c29debc8 (diff)
downloadrockbox-6a6217a2e580c7fa6cdfe90763d52c3a399d563a.tar.gz
rockbox-6a6217a2e580c7fa6cdfe90763d52c3a399d563a.zip
include config.h first, then #ifdef on features
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1143 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/games_menu.c2
-rw-r--r--apps/screensavers_menu.c3
2 files changed, 3 insertions, 2 deletions
diff --git a/apps/games_menu.c b/apps/games_menu.c
index caee2b464c..34405825cd 100644
--- a/apps/games_menu.c
+++ b/apps/games_menu.c
@@ -16,9 +16,9 @@
16 * KIND, either express or implied. 16 * KIND, either express or implied.
17 * 17 *
18 ****************************************************************************/ 18 ****************************************************************************/
19#ifdef HAVE_LCD_BITMAP
20 19
21#include "config.h" 20#include "config.h"
21#ifdef HAVE_LCD_BITMAP
22#include <stdio.h> 22#include <stdio.h>
23#include <stdbool.h> 23#include <stdbool.h>
24#include "lcd.h" 24#include "lcd.h"
diff --git a/apps/screensavers_menu.c b/apps/screensavers_menu.c
index e7dc031e12..41e5e39fee 100644
--- a/apps/screensavers_menu.c
+++ b/apps/screensavers_menu.c
@@ -16,9 +16,10 @@
16 * KIND, either express or implied. 16 * KIND, either express or implied.
17 * 17 *
18 ****************************************************************************/ 18 ****************************************************************************/
19#include "config.h"
20
19#ifdef HAVE_LCD_BITMAP 21#ifdef HAVE_LCD_BITMAP
20 22
21#include "config.h"
22#include <stdio.h> 23#include <stdio.h>
23#include <stdbool.h> 24#include <stdbool.h>
24#include "lcd.h" 25#include "lcd.h"