summaryrefslogtreecommitdiff
path: root/firmware/common
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2003-04-25 12:36:52 +0000
committerDaniel Stenberg <daniel@haxx.se>2003-04-25 12:36:52 +0000
commited155ccc394047fe4b089d68b9560818cbcdf812 (patch)
treec1d4d2284d55bc94cb9b56fe319d56183a3de296 /firmware/common
parent004f690405685cbfdc4a37346dac89a2394abc97 (diff)
downloadrockbox-ed155ccc394047fe4b089d68b9560818cbcdf812.tar.gz
rockbox-ed155ccc394047fe4b089d68b9560818cbcdf812.zip
include the sprintf.h header, basicly for simulator purposes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3612 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/common')
-rw-r--r--firmware/common/sprintf.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/firmware/common/sprintf.c b/firmware/common/sprintf.c
index c700034f49..94fc295938 100644
--- a/firmware/common/sprintf.c
+++ b/firmware/common/sprintf.c
@@ -29,6 +29,7 @@
29#include <stdbool.h> 29#include <stdbool.h>
30 30
31#include "file.h" /* for write(), used in fprintf() */ 31#include "file.h" /* for write(), used in fprintf() */
32#include "sprintf.h" /* to allow the simulator magic */
32 33
33static const char hexdigit[] = "0123456789ABCDEF"; 34static const char hexdigit[] = "0123456789ABCDEF";
34 35