diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-08-21 13:42:32 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-08-21 13:42:32 +0000 |
commit | 54095f1fc330697172b4c96c7f56618ef45d831a (patch) | |
tree | a576232b077cd59c2515fcfab911dab3c751264d /sys/arch/sun3 | |
parent | 9f84d57c6364961e6da5ef1123c21de65d41378e (diff) |
Add Debugger prototype for gcc nit picking; garnett@cs.colorado.edu
Diffstat (limited to 'sys/arch/sun3')
-rw-r--r-- | sys/arch/sun3/sun3/stub.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/arch/sun3/sun3/stub.c b/sys/arch/sun3/sun3/stub.c index be39f76319b..0e8b8eb04b5 100644 --- a/sys/arch/sun3/sun3/stub.c +++ b/sys/arch/sun3/sun3/stub.c @@ -1,4 +1,4 @@ -/* $OpenBSD: stub.c,v 1.5 1997/01/16 04:04:32 kstailey Exp $ */ +/* $OpenBSD: stub.c,v 1.6 1998/08/21 13:42:31 millert Exp $ */ /* $NetBSD: stub.c,v 1.13 1996/11/20 18:57:37 gwr Exp $ */ /*- @@ -46,6 +46,10 @@ #include <machine/machdep.h> +#ifndef DDB +void Debugger __P((void)); +#endif + /* Called by autoconf.c */ #ifndef GENERIC void swapgeneric() {} @@ -66,4 +70,3 @@ Debugger() __asm ("trap #15"); } #endif /* !DDB */ - |