Import libiberty from gcc

This commit is contained in:
Alan Modra
2022-05-13 16:43:15 +09:30
parent 845cbaa9ff
commit 31b15688c4
28 changed files with 165 additions and 148 deletions

View File

@@ -18,8 +18,8 @@ Copies @var{count} bytes from memory area @var{from} to memory area
void bcopy (const void*, void*, size_t);
PTR
memmove (PTR s1, const PTR s2, size_t n)
void *
memmove (void *s1, const void *s2, size_t n)
{
bcopy (s2, s1, n);
return s1;