summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-04-25 14:28:41 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-04-25 14:28:41 +0000
commit48d28542d3be7dd86c65b74c1bbc9279abd0faa8 (patch)
tree1728aff67522200a523b804b9c84706cb42e48a4 /apps
parentf97cdc9cd55a9216ef5afb0102338333bd4c029a (diff)
include "sprintf.h" after the system headers for the simulator magic
redefines to work better git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3618 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/recorder/sokoban.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/recorder/sokoban.c b/apps/recorder/sokoban.c
index 48efa06a99..c39320fd3a 100644
--- a/apps/recorder/sokoban.c
+++ b/apps/recorder/sokoban.c
@@ -24,7 +24,6 @@
#ifdef USE_GAMES
-#include <sprintf.h>
#include "sokoban.h"
#include "lcd.h"
#include "button.h"
@@ -42,6 +41,8 @@
#endif
#include <string.h>
#include "lang.h"
+#include "sprintf.h"
+
#define SOKOBAN_TITLE "Sokoban"
#define SOKOBAN_TITLE_FONT 2
#define LEVELS_FILE "/sokoban.levels"