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 | |
| parent | 04bd1a045fa77456cc8ae47c54ecb6cca59c8d1d (diff) | |
| download | rockbox-36e7c377507526194750bed8a6f5eb0dfbfe71b3.zip rockbox-36e7c377507526194750bed8a6f5eb0dfbfe71b3.tar.gz rockbox-36e7c377507526194750bed8a6f5eb0dfbfe71b3.tar.bz2 rockbox-36e7c377507526194750bed8a6f5eb0dfbfe71b3.tar.xz | |
memset is in string.h, not memory.h.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26086 a1c6a512-1295-4272-9138-f99709370657
| -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 fbe2621..28a9cb8 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" |