This is memmove.c in view mode; [Download] [Up]
#include <stddef.h>
void *memmove(void *p1, const void *p2, size_t n)
{
bcopy(p2, p1, n);
return p1;
}
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.