diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2002-04-23 08:04:15 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2002-04-23 08:04:15 +0000 |
commit | 7cb15b915038962dcd92cd1a13952575e1b7a8cf (patch) | |
tree | da4f86fa63c5794c10ddfc55336c59d41a98a7cf /sys/arch/mvme68k/include | |
parent | 8aae07172099cb259e5bfc06d6f440ff6cfbb2e0 (diff) |
Oops, unbreak; deraadt@
Diffstat (limited to 'sys/arch/mvme68k/include')
-rw-r--r-- | sys/arch/mvme68k/include/cpu.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/mvme68k/include/cpu.h b/sys/arch/mvme68k/include/cpu.h index a2bb05dc8b8..d005b7e7b17 100644 --- a/sys/arch/mvme68k/include/cpu.h +++ b/sys/arch/mvme68k/include/cpu.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.h,v 1.9 2002/04/21 23:43:40 miod Exp $ */ +/* $OpenBSD: cpu.h,v 1.10 2002/04/23 08:04:14 miod Exp $ */ /* * Copyright (c) 1995 Theo de Raadt @@ -137,7 +137,7 @@ struct clockframe { * Preempt the current process if in interrupt from user mode, * or after the current trap/syscall if in system mode. */ -extern int want_resched; +int want_resched; #define need_resched() { want_resched = 1; aston(); } /* @@ -153,7 +153,7 @@ extern int want_resched; */ #define signotify(p) aston() -extern int astpending; +int astpending; #define aston() (astpending = 1) extern char *intiobase, *intiolimit; |