forked from len0rd/rockbox
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:
parent
798a4f3533
commit
6726f4fcf6
1 changed files with 1 additions and 1 deletions
|
|
@ -132,7 +132,7 @@ void* memchr(const void *s, int c, size_t n)
|
||||||
return(local_rb->memchr(s,c,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* dest=(char*)s1;
|
||||||
char* src=(char*)s2;
|
char* src=(char*)s2;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue