mirror of
https://github.com/fluencelabs/musl
synced 2025-06-07 20:11:49 +00:00
8 lines
114 B
C
8 lines
114 B
C
|
#include <string.h>
|
||
|
#include <strings.h>
|
||
|
|
||
|
void bcopy(const void *s1, void *s2, size_t n)
|
||
|
{
|
||
|
memmove(s2, s1, n);
|
||
|
}
|