diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-04-25 14:28:41 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-04-25 14:28:41 +0000 |
commit | 48d28542d3be7dd86c65b74c1bbc9279abd0faa8 (patch) | |
tree | 1728aff67522200a523b804b9c84706cb42e48a4 /apps | |
parent | f97cdc9cd55a9216ef5afb0102338333bd4c029a (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.c | 3 |
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" |