1 /*- 2 * Copyright (c) 1990 The Regents of the University of California. 3 * All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * Chris Torek. 7 * 8 * %sccs.include.redist.c% 9 */ 10 11 #if defined(LIBC_SCCS) && !defined(lint) 12 static char sccsid[] = "@(#)memcpy.c 5.5 (Berkeley) 05/15/90"; 13 #endif /* LIBC_SCCS and not lint */ 14 15 #include <string.h> 16 #include <sys/stdc.h> 17 18 #undef memcpy 19 20 /* 21 * Copy a block of memory. 22 */ 23 void * 24 memcpy(dst, src, n) 25 void *dst; 26 const void *src; 27 size_t n; 28 { 29 return (memmove(dst, src, n)); 30 } 31