diff options
author | 2001-02-07 07:22:53 +0000 | |
---|---|---|
committer | 2001-02-07 07:22:53 +0000 | |
commit | 9393a4699a893f89c370686c67da18a2c755927b (patch) | |
tree | fb6c30a965b4c3cf037c52d3fafea8f3f73485ae | |
parent | Remove support for #!. It's not intuitive and if you happen to add (diff) | |
download | wireguard-openbsd-9393a4699a893f89c370686c67da18a2c755927b.tar.xz wireguard-openbsd-9393a4699a893f89c370686c67da18a2c755927b.zip |
Now that niklas has fixed ddb to not barf on elf symbols, there
is no need to disable ddb.
-rw-r--r-- | sys/arch/alpha/alpha/machdep.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/alpha/alpha/machdep.c b/sys/arch/alpha/alpha/machdep.c index bfa6ae84137..7497061cbf0 100644 --- a/sys/arch/alpha/alpha/machdep.c +++ b/sys/arch/alpha/alpha/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.41 2001/02/06 17:04:09 art Exp $ */ +/* $OpenBSD: machdep.c,v 1.42 2001/02/07 07:22:53 art Exp $ */ /* $NetBSD: machdep.c,v 1.206 2000/05/23 05:12:54 thorpej Exp $ */ /*- @@ -789,9 +789,7 @@ nobootinfo: * Initialize debuggers, and break into them if appropriate. */ #ifdef DDB -#ifdef notyet ddb_init(); -#endif if (boothowto & RB_KDB) Debugger(); |