diff options
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/cardbus/cardbus.c | 4 | ||||
-rw-r--r-- | sys/dev/usb/usb_port.h | 4 | ||||
-rw-r--r-- | sys/scsi/scsiconf.c | 3 | ||||
-rw-r--r-- | sys/uvm/uvm_stat.h | 4 |
4 files changed, 4 insertions, 11 deletions
diff --git a/sys/dev/cardbus/cardbus.c b/sys/dev/cardbus/cardbus.c index 8d531e165b8..5dc3cab44be 100644 --- a/sys/dev/cardbus/cardbus.c +++ b/sys/dev/cardbus/cardbus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cardbus.c,v 1.2 2000/05/15 06:36:21 niklas Exp $ */ +/* $OpenBSD: cardbus.c,v 1.3 2001/06/24 21:29:05 mickey Exp $ */ /* $NetBSD: cardbus.c,v 1.24 2000/04/02 19:11:37 mycroft Exp $ */ /* @@ -62,8 +62,6 @@ #define DPRINTF(a) #endif -extern int cold; - STATIC void cardbusattach __P((struct device *, struct device *, void *)); /* STATIC int cardbusprint __P((void *, const char *)); */ int cardbus_attach_card __P((struct cardbus_softc *)); diff --git a/sys/dev/usb/usb_port.h b/sys/dev/usb/usb_port.h index 339f1341b08..4f561eb86cc 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.25 2001/05/03 02:20:34 aaron Exp $ */ +/* $OpenBSD: usb_port.h,v 1.26 2001/06/24 21:29:05 mickey Exp $ */ /* $NetBSD: usb_port.h,v 1.42 2001/03/28 19:00:39 ichiro Exp $ */ /* $FreeBSD: src/sys/dev/usb/usb_port.h,v 1.21 1999/11/17 22:33:47 n_hibma Exp $ */ @@ -279,8 +279,6 @@ typedef int usb_malloc_type; #define realloc usb_realloc void *usb_realloc(void *, u_int, int, int); -extern int cold; - typedef struct device *device_ptr_t; #define USBBASEDEVICE struct device #define USBDEV(bdev) (&(bdev)) diff --git a/sys/scsi/scsiconf.c b/sys/scsi/scsiconf.c index 523d94521c9..5bed9a20af7 100644 --- a/sys/scsi/scsiconf.c +++ b/sys/scsi/scsiconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: scsiconf.c,v 1.57 2001/06/22 14:35:43 deraadt Exp $ */ +/* $OpenBSD: scsiconf.c,v 1.58 2001/06/24 21:29:04 mickey Exp $ */ /* $NetBSD: scsiconf.c,v 1.57 1996/05/02 01:09:01 neil Exp $ */ /* @@ -153,7 +153,6 @@ scsibusattach(parent, self, aux) struct scsibus_softc *sb = (struct scsibus_softc *)self; struct scsi_link *sc_link_proto = aux; int nbytes, i; - extern int cold; if (!cold) scsi_autoconf = 0; diff --git a/sys/uvm/uvm_stat.h b/sys/uvm/uvm_stat.h index 6706895d0c8..d9c462bf543 100644 --- a/sys/uvm/uvm_stat.h +++ b/sys/uvm/uvm_stat.h @@ -1,4 +1,4 @@ -/* $OpenBSD: uvm_stat.h,v 1.7 2001/03/09 05:34:38 smart Exp $ */ +/* $OpenBSD: uvm_stat.h,v 1.8 2001/06/24 21:29:04 mickey Exp $ */ /* $NetBSD: uvm_stat.h,v 1.15 1999/06/21 17:25:12 thorpej Exp $ */ /* @@ -177,8 +177,6 @@ do { \ LIST_INSERT_HEAD(&uvm_histories, &(NAME), list); \ } while (0) -extern int cold; - #if defined(UVMHIST_PRINT) extern int uvmhist_print_enabled; #define UVMHIST_PRINTNOW(E) \ |