diff options
author | 2013-06-13 05:12:51 +0000 | |
---|---|---|
committer | 2013-06-13 05:12:51 +0000 | |
commit | e485b94d77aa0fc2026d2717b91ffb0c3a78fe30 (patch) | |
tree | c9518afa3c34be520eda635e0760d49e10d4b386 | |
parent | don't use a ridiculous private copy of bcopy which is just like libc. (diff) | |
download | wireguard-openbsd-e485b94d77aa0fc2026d2717b91ffb0c3a78fe30.tar.xz wireguard-openbsd-e485b94d77aa0fc2026d2717b91ffb0c3a78fe30.zip |
ovbcopy begone
-rw-r--r-- | sys/arch/arm/include/param.h | 4 | ||||
-rw-r--r-- | sys/arch/vax/include/param.h | 4 |
2 files changed, 2 insertions, 6 deletions
diff --git a/sys/arch/arm/include/param.h b/sys/arch/arm/include/param.h index a9df9e89392..c8dc039f766 100644 --- a/sys/arch/arm/include/param.h +++ b/sys/arch/arm/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.20 2013/03/26 05:04:10 deraadt Exp $ */ +/* $OpenBSD: param.h,v 1.21 2013/06/13 05:13:12 deraadt Exp $ */ /* * Copyright (c) 1994,1995 Mark Brinicombe. @@ -103,8 +103,6 @@ void delay (unsigned); #define DELAY(x) delay(x) #endif -#define ovbcopy bcopy - #if !defined(_LOCORE) #include <machine/cpu.h> #endif diff --git a/sys/arch/vax/include/param.h b/sys/arch/vax/include/param.h index 5a8c1f2c508..47125f8a309 100644 --- a/sys/arch/vax/include/param.h +++ b/sys/arch/vax/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.40 2013/03/26 05:04:10 deraadt Exp $ */ +/* $OpenBSD: param.h,v 1.41 2013/06/13 05:12:51 deraadt Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -79,8 +79,6 @@ #define vax_atop(x) (((unsigned)(x) + VAX_PGOFSET) >> VAX_PGSHIFT) #define vax_btop(x) (((unsigned)(x)) >> VAX_PGSHIFT) -#define ovbcopy(x,y,z) bcopy(x, y, z) - #include <machine/intr.h> /* Prototype needed for delay() */ |