diff options
author | Dave Chapman <dave@dchapman.com> | 2005-10-31 20:40:08 +0000 |
---|---|---|
committer | Dave Chapman <dave@dchapman.com> | 2005-10-31 20:40:08 +0000 |
commit | 6726f4fcf6f2ded6495116339acec4d7fdd6e625 (patch) | |
tree | 6c5ac654eb362327e2bbd284301476680864371f /apps/codecs/lib | |
parent | 798a4f3533cc63be2b313797bd4be5d53bda8fb9 (diff) |
Correct the prototype for memmove
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7701 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/lib')
-rw-r--r-- | apps/codecs/lib/codeclib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/lib/codeclib.c b/apps/codecs/lib/codeclib.c index 482c5a5af1..cad8f53deb 100644 --- a/apps/codecs/lib/codeclib.c +++ b/apps/codecs/lib/codeclib.c @@ -132,7 +132,7 @@ void* memchr(const void *s, int c, size_t n) return(local_rb->memchr(s,c,n)); } -void* memmove(const void *s1, const void *s2, size_t n) +void* memmove(void *s1, const void *s2, size_t n) { char* dest=(char*)s1; char* src=(char*)s2; |