Correct the prototype for memmove

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7701 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dave Chapman 2005-10-31 20:40:08 +00:00
parent 798a4f3533
commit 6726f4fcf6

View file

@ -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;