]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libc/amd64/string/bcopy.c
Integrate capsicum-test into the FreeBSD test suite
[FreeBSD/FreeBSD.git] / lib / libc / amd64 / string / bcopy.c
1 /*-
2  * Public domain.
3  */
4
5 #include <sys/cdefs.h>
6 __FBSDID("$FreeBSD$");
7
8 #include <string.h>
9
10 void
11 bcopy(const void *src, void *dst, size_t len)
12 {
13
14         memmove(dst, src, len);
15 }