mirror of
https://github.com/diegocr/libnix.git
synced 2026-09-12 11:40:30 +00:00
13 lines
188 B
C
13 lines
188 B
C
#include <string.h>
|
|
#include <stdlib.h>
|
|
|
|
#define bcopy __bCopy
|
|
static inline
|
|
#include "../misc/bcopy.c"
|
|
|
|
void *memmove(void *s1,const void *s2,size_t n)
|
|
{
|
|
bcopy(s2,s1,n);
|
|
return s1;
|
|
}
|