summaryrefslogtreecommitdiff
path: root/flash/extract/extract.c
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2010-08-12 13:55:01 +0000
committerThomas Martitz <kugel@rockbox.org>2010-08-12 13:55:01 +0000
commit87409a2619957e8756fa5ba47f9f67baec7ead82 (patch)
tree2f142b8b24dbc496db1007f20f2d695a8848ea6c /flash/extract/extract.c
parent0e2286f226c8ce66adb846995eb1bf0b4d92a649 (diff)
downloadrockbox-87409a2619957e8756fa5ba47f9f67baec7ead82.tar.gz
rockbox-87409a2619957e8756fa5ba47f9f67baec7ead82.zip
Move memset6() declaration to string-extra.h, kills a warning compiling for android since it ships a memory.h.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27789 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'flash/extract/extract.c')
-rw-r--r--flash/extract/extract.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/flash/extract/extract.c b/flash/extract/extract.c
index e6ea2efdc1..b1f8f4d870 100644
--- a/flash/extract/extract.c
+++ b/flash/extract/extract.c
@@ -23,7 +23,7 @@
23 23
24#include <stdio.h> 24#include <stdio.h>
25#include <stdlib.h> 25#include <stdlib.h>
26#include <memory.h> 26#include <inttypes.h>
27 27
28#define UINT8 unsigned char 28#define UINT8 unsigned char
29#define UINT16 unsigned short 29#define UINT16 unsigned short
@@ -144,4 +144,4 @@ int main(int argc, char* argv[])
144 fclose(pOutFile); 144 fclose(pOutFile);
145 145
146 return 0; 146 return 0;
147} \ No newline at end of file 147}