diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2002-02-27 10:47:52 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2002-02-27 10:47:52 +0000 |
commit | 60995b56cb42e5a93991cb4a34288957b43c32ee (patch) | |
tree | c20f085349ab4d360f95807a82fcf7d9425787ee /sys | |
parent | 71b935ed052d9c98903f6e10edd73c46c6362052 (diff) |
We have memcpy and memset in the kernel.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/usb/usb_port.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/dev/usb/usb_port.h b/sys/dev/usb/usb_port.h index 20aa2aea238..24f570e2748 100644 --- a/sys/dev/usb/usb_port.h +++ b/sys/dev/usb/usb_port.h @@ -1,4 +1,4 @@ -/* $OpenBSD: usb_port.h,v 1.31 2001/11/02 17:53:47 mickey Exp $ */ +/* $OpenBSD: usb_port.h,v 1.32 2002/02/27 10:47:51 art Exp $ */ /* $NetBSD: usb_port.h,v 1.44 2001/05/14 20:35:29 bouyer Exp $ */ /* $FreeBSD: src/sys/dev/usb/usb_port.h,v 1.21 1999/11/17 22:33:47 n_hibma Exp $ */ @@ -236,8 +236,6 @@ __CONCAT(dname,_detach)(self, flags) \ #define xs_control flags #define xs_status status -#define memcpy(d, s, l) bcopy((s),(d),(l)) -#define memset(d, v, l) bzero((d),(l)) #define bswap32(x) swap32(x) #define bswap16(x) swap16(x) |