diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-07-15 07:33:17 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1996-07-15 07:33:17 +0000 |
commit | c3ba01a54c0477b7a8e9f0511654149f4c99eb3d (patch) | |
tree | 0946fb66423ca30a66ced65e9ac7bc6d456d47ff /sys | |
parent | bfaf6d4bf8ebadb26f9b06b16a1a8d9e30e40603 (diff) |
add extern dynamic_gdt decl.
it does not even compile w/o that!
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/i386/i386/apm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/i386/i386/apm.c b/sys/arch/i386/i386/apm.c index 03483c7a868..0c19451ee9f 100644 --- a/sys/arch/i386/i386/apm.c +++ b/sys/arch/i386/i386/apm.c @@ -1,4 +1,4 @@ -/* $NetBSD $ */ +/* $OpenBSD: apm.c,v 1.2 1996/07/15 07:33:16 mickey Exp $ */ /*- * Copyright (c) 1995 John T. Kohl. All rights reserved. @@ -590,6 +590,7 @@ apmattach(parent, self, aux) struct device *parent, *self; void *aux; { + extern union descriptor *dynamic_gdt; struct apm_softc *apmsc = (void *)self; struct apmregs regs; int error; |