diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-10-18 14:47:08 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-10-18 14:47:08 +0000 |
commit | b6df118d7f3bc498fd4dc64294cb54bb1d05c1cd (patch) | |
tree | 467ce8acb6c49c5a50094bf3ab78828a4890bea7 | |
parent | c9ecdd5243e9e0124c488e690798b67819533227 (diff) |
device_register proto added
-rw-r--r-- | sys/arch/alpha/include/autoconf.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/alpha/include/autoconf.h b/sys/arch/alpha/include/autoconf.h index fdc16cfa8bb..5531aa9d3f6 100644 --- a/sys/arch/alpha/include/autoconf.h +++ b/sys/arch/alpha/include/autoconf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.h,v 1.4 1996/07/29 22:58:27 niklas Exp $ */ +/* $OpenBSD: autoconf.h,v 1.5 1996/10/18 14:47:07 niklas Exp $ */ /* $NetBSD: autoconf.h,v 1.2.4.2 1996/06/13 18:35:23 cgd Exp $ */ /* @@ -81,9 +81,10 @@ struct bootdev_data { char *ctrl_dev_type; }; +void device_register __P((struct device *, void *)); void set_clockintr __P((void)); void set_iointr __P((void (*)(void *, int))); -int badaddr __P((void *, u_int64_t)); +int badaddr __P((void *, u_int64_t)); #ifdef EVCNT_COUNTERS extern struct evcnt clock_intr_evcnt; |