diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-02-26 22:59:33 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-02-26 22:59:33 +0000 |
commit | 45af4599db69083c939c000e7bee851de33d5d4c (patch) | |
tree | e513f2bdd92400920b32dfd825f30463dabc3bd1 /sys | |
parent | 02b6545fba28e6e7591bd9e0e3c8e02180664bb8 (diff) |
Let this compile if no DDB
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/mac68k/mac68k/machdep.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/mac68k/mac68k/machdep.c b/sys/arch/mac68k/mac68k/machdep.c index 5255da14a61..565e7fff303 100644 --- a/sys/arch/mac68k/mac68k/machdep.c +++ b/sys/arch/mac68k/mac68k/machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: machdep.c,v 1.103 2003/02/24 17:37:59 miod Exp $ */ +/* $OpenBSD: machdep.c,v 1.104 2003/02/26 22:59:32 miod Exp $ */ /* $NetBSD: machdep.c,v 1.207 1998/07/08 04:39:34 thorpej Exp $ */ /* @@ -1143,7 +1143,9 @@ getenvvars(flag, buf) char *buf; { extern u_long bootdev, videobitdepth, videosize; +#if defined(DDB) || NKSYMS > 0 extern u_long end, esym; +#endif extern u_long macos_boottime, MacOSROMBase; extern long macos_gmtbias; int root_scsi_id; |