From: kstailey Date: Tue, 14 Jan 1997 02:25:20 +0000 (+0000) Subject: Debugger() is needed by KGDB not just DDB X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=36d5f86de597e4924548c21104e7483f9bc51427;p=openbsd Debugger() is needed by KGDB not just DDB --- 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 -#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 *));