diff options
-rw-r--r-- | sys/lib/libsa/stand.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libsa/stand.h b/sys/lib/libsa/stand.h index 590f7c06089..5bf6cddf699 100644 --- a/sys/lib/libsa/stand.h +++ b/sys/lib/libsa/stand.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stand.h,v 1.63 2016/08/27 04:57:30 guenther Exp $ */ +/* $OpenBSD: stand.h,v 1.64 2017/10/07 19:54:49 guenther Exp $ */ /* $NetBSD: stand.h,v 1.18 1996/11/30 04:35:51 gwr Exp $ */ /*- @@ -143,7 +143,7 @@ __dead void panic(const char *, ...) __attribute__((noreturn)); __dead void _rtt(void) __attribute__((noreturn)); #define bzero(s,n) ((void)memset((s),0,(n))) #define bcmp(s1,s2,n) (memcmp((s2),(s1),(n))) -#define bcopy(s1,s2,n) ((void)memcpy((s2),(s1),(n))) +#define bcopy(s1,s2,n) ((void)memmove((s2),(s1),(n))) void explicit_bzero(void *, size_t); void *memcpy(void *, const void *, size_t); int memcmp(const void *, const void *, size_t); |