From 36d5f86de597e4924548c21104e7483f9bc51427 Mon Sep 17 00:00:00 2001 From: kstailey Date: Tue, 14 Jan 1997 02:25:20 +0000 Subject: [PATCH] Debugger() is needed by KGDB not just DDB --- sys/sys/systm.h | 4 ++-- 1 file 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 -#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 *)); -- 2.20.1