diff options
author | n_hibma <n_hibma@FreeBSD.org> | 2000-04-03 20:58:30 +0000 |
---|---|---|
committer | n_hibma <n_hibma@FreeBSD.org> | 2000-04-03 20:58:30 +0000 |
commit | d1a0c5a2fa387d9750229d6941e9bc9c1fa47738 (patch) | |
tree | e9a6c861ea2a1c99d56aa07012fab3f62a577765 /sys/dev/usb/usb_ethersubr.c | |
parent | 56ae0558f5ba0519e94a092249dc6f15954a5e16 (diff) | |
download | FreeBSD-src-d1a0c5a2fa387d9750229d6941e9bc9c1fa47738.zip FreeBSD-src-d1a0c5a2fa387d9750229d6941e9bc9c1fa47738.tar.gz |
OpenBSD has a broken debugger that does not grok static. Use a
#define Static static
that the OpenBSD folks can define it to be empty if they like.
Diffstat (limited to 'sys/dev/usb/usb_ethersubr.c')
-rw-r--r-- | sys/dev/usb/usb_ethersubr.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/usb/usb_ethersubr.c b/sys/dev/usb/usb_ethersubr.c index 569b4bf..35a7db6 100644 --- a/sys/dev/usb/usb_ethersubr.c +++ b/sys/dev/usb/usb_ethersubr.c @@ -69,16 +69,16 @@ #include <dev/usb/usb_ethersubr.h> #ifndef lint -static const char rcsid[] = +Static const char rcsid[] = "$FreeBSD$"; #endif -static struct ifqueue usbq_rx; -static struct ifqueue usbq_tx; +Static struct ifqueue usbq_rx; +Static struct ifqueue usbq_tx; -static void usbintr __P((void)); +Static void usbintr __P((void)); -static void usbintr() +Static void usbintr() { struct ether_header *eh; struct mbuf *m; |