diff options
author | Dave Chapman <dave@dchapman.com> | 2005-10-31 20:41:54 +0000 |
---|---|---|
committer | Dave Chapman <dave@dchapman.com> | 2005-10-31 20:41:54 +0000 |
commit | c3f901be565682a6765249cebe8e58f9afeb8cfd (patch) | |
tree | 2b8d5b3548da770b4dd056ad9e60e27928d4b07c /apps/codecs/lib/codeclib.h | |
parent | 6726f4fcf6f2ded6495116339acec4d7fdd6e625 (diff) |
Correct the prototype for memmove (oops, forgot this file)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7702 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs/lib/codeclib.h')
-rw-r--r-- | apps/codecs/lib/codeclib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/lib/codeclib.h b/apps/codecs/lib/codeclib.h index 8852b47043..e112112756 100644 --- a/apps/codecs/lib/codeclib.h +++ b/apps/codecs/lib/codeclib.h @@ -40,7 +40,7 @@ void codec_free(void* ptr); void *memcpy(void *dest, const void *src, size_t n); void *memset(void *s, int c, size_t n); int memcmp(const void *s1, const void *s2, size_t n); -void *memmove(const void *s1, const void *s2, size_t n); +void *memmove(void *s1, const void *s2, size_t n); size_t strlen(const char *s); char *strcpy(char *dest, const char *src); |