diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2003-07-14 19:23:53 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2003-07-14 19:23:53 +0000 |
commit | 192298c9ee8a0532b90599c0f4b9509cb6c9a77d (patch) | |
tree | 0ba563b6ef3f23c15644ea1ffa7db6bdf6d11e48 /sys/arch/powerpc | |
parent | 73dbdeec19f3b58a8707d8595fef405c6485a57c (diff) |
tickspending is now a private variable of clock.c
Diffstat (limited to 'sys/arch/powerpc')
-rw-r--r-- | sys/arch/powerpc/include/intr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/powerpc/include/intr.h b/sys/arch/powerpc/include/intr.h index 5ec3f88e499..a10977bceb3 100644 --- a/sys/arch/powerpc/include/intr.h +++ b/sys/arch/powerpc/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.22 2003/07/14 18:56:12 drahn Exp $ */ +/* $OpenBSD: intr.h,v 1.23 2003/07/14 19:23:52 drahn Exp $ */ /* * Copyright (c) 1997 Per Fogelstrom, Opsycon AB and RTMX Inc, USA. @@ -66,7 +66,7 @@ int splsoftnet(void); void do_pending_int(void); -volatile extern int cpl, ipending, astpending, tickspending; +volatile extern int cpl, ipending, astpending; extern int imask[7]; /* SPL asserts */ |