diff options
author | 2013-06-15 18:38:18 +0000 | |
---|---|---|
committer | 2013-06-15 18:38:18 +0000 | |
commit | 015a4ebd3981ec0f0da02ed7ef6148a6bb521407 (patch) | |
tree | 71766dc2b29a8a064a37a128687251038ab9b8c0 | |
parent | Add test for trapping both ERR and EXIT, fixed by revision 1.48 (diff) | |
download | wireguard-openbsd-015a4ebd3981ec0f0da02ed7ef6148a6bb521407.tar.xz wireguard-openbsd-015a4ebd3981ec0f0da02ed7ef6148a6bb521407.zip |
give bcopy() the ovbcopy() semantics
-rw-r--r-- | sys/lib/libkern/arch/m88k/copy_subr.S | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/lib/libkern/arch/m88k/copy_subr.S b/sys/lib/libkern/arch/m88k/copy_subr.S index 2833e2b2d13..6f8dcdc0362 100644 --- a/sys/lib/libkern/arch/m88k/copy_subr.S +++ b/sys/lib/libkern/arch/m88k/copy_subr.S @@ -1,4 +1,4 @@ -/* $OpenBSD: copy_subr.S,v 1.5 2013/06/13 03:59:03 deraadt Exp $ */ +/* $OpenBSD: copy_subr.S,v 1.6 2013/06/15 18:38:18 miod Exp $ */ /* * Mach Operating System * Copyright (c) 1993-1992 Carnegie Mellon University @@ -52,6 +52,7 @@ ENTRY(memcpy) ENTRY(memmove) #endif #ifdef BCOPY +#define OVBCOPY ENTRY(bcopy) #endif |