3065 some functions in the tcp module can be static
[unleashed.git] / usr / src / cmd / man / src / util / nsgmls.src / lib / memmove.c
blob3fcb8a628031efdca0372c035074f83d503d6dde
1 #include <stddef.h>
3 void *memmove(void *p1, const void *p2, size_t n)
5 bcopy(p2, p1, n);
6 return p1;