diff options
author | Thomas Martitz <kugel@rockbox.org> | 2010-05-16 12:43:09 +0000 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2010-05-16 12:43:09 +0000 |
commit | 36e7c377507526194750bed8a6f5eb0dfbfe71b3 (patch) | |
tree | 9e8cf8a9f8176f16501762c8dbdfe62ca4fd04e1 /firmware/target/hosted | |
parent | 04bd1a045fa77456cc8ae47c54ecb6cca59c8d1d (diff) |
memset is in string.h, not memory.h.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26086 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/hosted')
-rw-r--r-- | firmware/target/hosted/sdl/thread-sdl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/hosted/sdl/thread-sdl.c b/firmware/target/hosted/sdl/thread-sdl.c index fbe2621d40..28a9cb8d3a 100644 --- a/firmware/target/hosted/sdl/thread-sdl.c +++ b/firmware/target/hosted/sdl/thread-sdl.c @@ -24,7 +24,7 @@ #include <SDL.h> #include <SDL_thread.h> #include <stdlib.h> -#include <memory.h> +#include <string.h> /* memset() */ #include <setjmp.h> #include "system-sdl.h" #include "thread-sdl.h" |