diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-01-14 02:25:21 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-01-14 02:25:21 +0000 |
commit | 8137e9ba8aee70bd7be4f781fb9e78eaf047520e (patch) | |
tree | 0572ad54e1604243b004d4e13b30ce697d72e565 | |
parent | 4c5a3612a2833dbfa31a2b9b3a5ff43b99b5fc43 (diff) |
Debugger() is needed by KGDB not just DDB
-rw-r--r-- | sys/sys/systm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/systm.h b/sys/sys/systm.h index d84c774d55e..e377cf8fd35 100644 --- a/sys/sys/systm.h +++ b/sys/sys/systm.h @@ -1,4 +1,4 @@ -/* $OpenBSD: systm.h,v 1.17 1996/12/08 14:25:52 niklas Exp $ */ +/* $OpenBSD: systm.h,v 1.18 1997/01/14 02:25:20 kstailey Exp $ */ /* $NetBSD: systm.h,v 1.50 1996/06/09 04:55:09 briggs Exp $ */ /*- @@ -238,7 +238,7 @@ int (*mountroot) __P((void)); #include <lib/libkern/libkern.h> -#ifdef DDB +#if defined(DDB) || defined(KGDB) /* debugger entry points */ void Debugger __P((void)); /* in DDB only */ int read_symtab_from_file __P((struct proc *,struct vnode *,const char *)); |