diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2001-03-29 18:47:19 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2001-03-29 18:47:19 +0000 |
commit | b717996af2b1a782b65d6e295debc21932773cba (patch) | |
tree | 57ee389a8b37907429cbcdfbaac2e6d7c99fc431 | |
parent | 1b9b05bfe0bf244918152cee60db00c47b14823c (diff) |
Make several global variables referenced as extern, not common.
Cleans up symbols in object files.
-rw-r--r-- | sys/arch/powerpc/include/intr.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/powerpc/include/intr.h b/sys/arch/powerpc/include/intr.h index 55fe476c175..e6f8dd7a8bc 100644 --- a/sys/arch/powerpc/include/intr.h +++ b/sys/arch/powerpc/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.7 2000/07/07 13:22:42 rahnds Exp $ */ +/* $OpenBSD: intr.h,v 1.8 2001/03/29 18:47:18 drahn Exp $ */ /* * Copyright (c) 1997 Per Fogelstrom, Opsycon AB and RTMX Inc, USA. @@ -64,8 +64,8 @@ int splsoftnet __P((void)); void do_pending_int __P((void)); -volatile int cpl, ipending, astpending, tickspending; -int imask[7]; +volatile extern int cpl, ipending, astpending, tickspending; +extern int imask[7]; /* * Reorder protection in the following inline functions is |