ftp.nice.ch/pub/next/developer/languages/sgml/sp.1.1.1.I.bs.tar.gz#/sp-1.1.1.I.bs/lib/memmove.c

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.