diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-11-23 03:29:51 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-11-23 03:29:51 +0000 |
commit | a64515d4f0ee334d150005f007f7e70da72c3b1d (patch) | |
tree | 64671fe4486300f6d8be6993eea14d6551cafe51 /sys/arch | |
parent | d9c2b5c6448be6a44aca21c85647578c222a908e (diff) |
cpu_intr_establish() proto
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/hppa/include/autoconf.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/hppa/include/autoconf.h b/sys/arch/hppa/include/autoconf.h index 7e505ed6090..3ed5307da54 100644 --- a/sys/arch/hppa/include/autoconf.h +++ b/sys/arch/hppa/include/autoconf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.h,v 1.2 1998/10/30 19:15:29 mickey Exp $ */ +/* $OpenBSD: autoconf.h,v 1.3 1998/11/23 03:29:50 mickey Exp $ */ /* * Copyright (c) 1998 Michael Shalayeff @@ -64,6 +64,8 @@ struct device; const char *hppa_mod_info __P((int, int)); void pdc_scanbus __P((struct device *, struct confargs *, int bus, int)); int mbprint __P((void *, const char *)); +int cpu_intr_establish __P((int pri, int (*handler) __P((void *)), + void *arg, const char *name)); void configure __P((void)); void dumpconf __P((void)); |