diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2003-02-15 00:03:23 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2003-02-15 00:03:23 +0000 |
| commit | 79a6cb67ba3ac5290cc4b6761a93810e49d562fd (patch) | |
| tree | 4282457ea46edfc1a31d61ac3d35025e5c9090bd | |
| parent | 2a9cb938317a6e1d216ab164dbf81f3a1109866f (diff) | |
| download | rockbox-79a6cb67ba3ac5290cc4b6761a93810e49d562fd.zip rockbox-79a6cb67ba3ac5290cc4b6761a93810e49d562fd.tar.gz rockbox-79a6cb67ba3ac5290cc4b6761a93810e49d562fd.tar.bz2 rockbox-79a6cb67ba3ac5290cc4b6761a93810e49d562fd.tar.xz | |
include sprintf.h when we use snprintf()
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3271 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/screens.c | 1 | ||||
| -rw-r--r-- | apps/settings.c | 1 | ||||
| -rw-r--r-- | apps/sound_menu.c | 1 | ||||
| -rw-r--r-- | apps/wps-display.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/apps/screens.c b/apps/screens.c index 71ab419..05fdd0a 100644 --- a/apps/screens.c +++ b/apps/screens.c @@ -30,6 +30,7 @@ #include "settings.h" #include "status.h" #include "playlist.h" +#include "sprintf.h" #ifdef HAVE_LCD_BITMAP #define BMPHEIGHT_usb_logo 32 diff --git a/apps/settings.c b/apps/settings.c index f6e92b0..102b244 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -53,6 +53,7 @@ #include "language.h" #include "wps-display.h" #include "powermgmt.h" +#include "sprintf.h" struct user_settings global_settings; char rockboxdir[] = ROCKBOX_DIR; /* config/font/data file directory */ diff --git a/apps/sound_menu.c b/apps/sound_menu.c index 0f5421e..a7e01b8 100644 --- a/apps/sound_menu.c +++ b/apps/sound_menu.c @@ -31,6 +31,7 @@ #include "icons.h" #endif #include "lang.h" +#include "sprintf.h" static char *fmt[] = { diff --git a/apps/wps-display.c b/apps/wps-display.c index 5c43d51..2ec4678 100644 --- a/apps/wps-display.c +++ b/apps/wps-display.c @@ -40,6 +40,7 @@ #include "mas.h" #include "lang.h" #include "powermgmt.h" +#include "sprintf.h" #ifdef HAVE_LCD_BITMAP #include "icons.h" |