diff options
author | Thomas Graichen <graichen@cvs.openbsd.org> | 1996-12-20 07:24:50 +0000 |
---|---|---|
committer | Thomas Graichen <graichen@cvs.openbsd.org> | 1996-12-20 07:24:50 +0000 |
commit | 1237c70007e0979bc76ccd230503c93243b972f8 (patch) | |
tree | af3cd64173f9f0066dc6134620c0c2e6fe38d18c | |
parent | 3d6796f08b7ac2b4d2f335aaf72bc01b466407ca (diff) |
add missing #ifdef COMPAT_10
-rw-r--r-- | sys/arch/i386/isa/pccons.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/i386/isa/pccons.c b/sys/arch/i386/isa/pccons.c index 8720bef53a1..3b6abd3c7fd 100644 --- a/sys/arch/i386/isa/pccons.c +++ b/sys/arch/i386/isa/pccons.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pccons.c,v 1.31 1996/12/05 04:40:26 tholo Exp $ */ +/* $OpenBSD: pccons.c,v 1.32 1996/12/20 07:24:49 graichen Exp $ */ /* $NetBSD: pccons.c,v 1.99.4.1 1996/06/04 20:03:53 cgd Exp $ */ /*- @@ -1881,7 +1881,9 @@ pcmmap(dev, offset, nprot) void pc_xmode_on() { +#ifdef COMPAT_10 struct trapframe *fp; +#endif if (pc_xmode) return; |