diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2003-04-25 12:36:52 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2003-04-25 12:36:52 +0000 |
| commit | ed155ccc394047fe4b089d68b9560818cbcdf812 (patch) | |
| tree | c1d4d2284d55bc94cb9b56fe319d56183a3de296 | |
| parent | 004f690405685cbfdc4a37346dac89a2394abc97 (diff) | |
| download | rockbox-ed155ccc394047fe4b089d68b9560818cbcdf812.zip rockbox-ed155ccc394047fe4b089d68b9560818cbcdf812.tar.gz rockbox-ed155ccc394047fe4b089d68b9560818cbcdf812.tar.bz2 rockbox-ed155ccc394047fe4b089d68b9560818cbcdf812.tar.xz | |
include the sprintf.h header, basicly for simulator purposes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3612 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/common/sprintf.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/firmware/common/sprintf.c b/firmware/common/sprintf.c index c700034..94fc295 100644 --- a/firmware/common/sprintf.c +++ b/firmware/common/sprintf.c @@ -29,6 +29,7 @@ #include <stdbool.h> #include "file.h" /* for write(), used in fprintf() */ +#include "sprintf.h" /* to allow the simulator magic */ static const char hexdigit[] = "0123456789ABCDEF"; |