diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-01-16 04:04:37 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-01-16 04:04:37 +0000 |
commit | 44d017900d1fa86842c5c61f42dc8b9c251362f6 (patch) | |
tree | 19d026477b44457a45b2f971cb61deb77cf7b42a /sys/arch/sun3/include/autoconf.h | |
parent | abd2051d67a709d535a48746b4ff8bea263fabdb (diff) |
all modified code can now compile with -Werror -Wall -Wstrict-prototypes
CAVEAT: turning off -O2 produces warnings about "defined but not used"
functions from libkern.h
removed internal copy of gets() replaced with call to getsn()
fixed #ifdef ... #endif mismatch in swapgeneric.c
fixed printf() in if_ie.c that was missing an argument
fixed si.c so that it compiles
added tags to all edited files
Diffstat (limited to 'sys/arch/sun3/include/autoconf.h')
-rw-r--r-- | sys/arch/sun3/include/autoconf.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sys/arch/sun3/include/autoconf.h b/sys/arch/sun3/include/autoconf.h index e1322fc8f12..bb03f2fc41f 100644 --- a/sys/arch/sun3/include/autoconf.h +++ b/sys/arch/sun3/include/autoconf.h @@ -1,3 +1,4 @@ +/* $OpenBSD: autoconf.h,v 1.7 1997/01/16 04:04:04 kstailey Exp $ */ /* $NetBSD: autoconf.h,v 1.12 1996/11/20 18:57:05 gwr Exp $ */ /*- @@ -66,3 +67,14 @@ int bus_print __P((void *, const char *)); int bus_peek __P((int, int, int)); char * bus_mapin __P((int, int, int)); +typedef int (*isr_func_t) __P((void *)); +void isr_add_custom __P((int, void *)); +void isr_add_autovect __P((isr_func_t, void *arg, int level)); +void isr_add_vectored __P((isr_func_t, void *arg, int pri, int vec)); + +void isr_soft_request __P((int level)); +void isr_soft_clear __P((int level)); + +/* Bus-error tolerant access to mapped address. */ +int peek_byte __P((caddr_t)); +int peek_word __P((caddr_t)); |