summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2010-05-16 12:43:09 +0000
committerThomas Martitz <kugel@rockbox.org>2010-05-16 12:43:09 +0000
commit36e7c377507526194750bed8a6f5eb0dfbfe71b3 (patch)
tree9e8cf8a9f8176f16501762c8dbdfe62ca4fd04e1
parent04bd1a045fa77456cc8ae47c54ecb6cca59c8d1d (diff)
downloadrockbox-36e7c377507526194750bed8a6f5eb0dfbfe71b3.tar.gz
rockbox-36e7c377507526194750bed8a6f5eb0dfbfe71b3.zip
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.c2
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 @@
24#include <SDL.h> 24#include <SDL.h>
25#include <SDL_thread.h> 25#include <SDL_thread.h>
26#include <stdlib.h> 26#include <stdlib.h>
27#include <memory.h> 27#include <string.h> /* memset() */
28#include <setjmp.h> 28#include <setjmp.h>
29#include "system-sdl.h" 29#include "system-sdl.h"
30#include "thread-sdl.h" 30#include "thread-sdl.h"