diff options
author | Marco Peereboom <marco@cvs.openbsd.org> | 2010-09-14 14:28:50 +0000 |
---|---|---|
committer | Marco Peereboom <marco@cvs.openbsd.org> | 2010-09-14 14:28:50 +0000 |
commit | d5fb85d04accb45d2ea76d75483cfc13d44480be (patch) | |
tree | a72a37c479497ebf08fd25f4c1a9d8cea7b336a2 /sys/arch | |
parent | d784a71742029d05bde6744a2afa685f4e11d72f (diff) |
unstatic variable we need elsewhere, fixes stand build on tezro
ok jsing
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/sgi/stand/boot/arcbios.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sgi/stand/boot/arcbios.c b/sys/arch/sgi/stand/boot/arcbios.c index ac895bfa520..a61cec27809 100644 --- a/sys/arch/sgi/stand/boot/arcbios.c +++ b/sys/arch/sgi/stand/boot/arcbios.c @@ -1,4 +1,4 @@ -/* $OpenBSD: arcbios.c,v 1.12 2009/07/22 20:23:44 miod Exp $ */ +/* $OpenBSD: arcbios.c,v 1.13 2010/09/14 14:28:49 marco Exp $ */ /*- * Copyright (c) 1996 M. Warner Losh. All rights reserved. * Copyright (c) 1996-2004 Opsycon AB. All rights reserved. @@ -36,7 +36,7 @@ #include <stand.h> -static int bios_is_32bit; +int bios_is_32bit; u_int kl_n_shift = 32; int arcbios_init(void); |