diff options
author | 1998-08-21 13:42:31 +0000 | |
---|---|---|
committer | 1998-08-21 13:42:31 +0000 | |
commit | f8e9123c28f9da193254d7069b8a92a95022cd46 (patch) | |
tree | f7e356e41b92fe0fd933d2c39aef622ae4b86b3d | |
parent | when checking for lib depends on the alpha (no shared libs) (diff) | |
download | wireguard-openbsd-f8e9123c28f9da193254d7069b8a92a95022cd46.tar.xz wireguard-openbsd-f8e9123c28f9da193254d7069b8a92a95022cd46.zip |
Add Debugger prototype for gcc nit picking; garnett@cs.colorado.edu
-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 */ - |