diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2005-12-17 21:10:25 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2005-12-17 21:10:25 +0000 |
commit | 5c4aa5d43d03f46db8ec00e5608444f223395800 (patch) | |
tree | 8006b87ab2db5cee425901c1dafffc946d81a7f1 /sys/arch/mips64 | |
parent | 832a24ed5ab2dd786f06b3a0d48e761d8b471832 (diff) |
Remove duplicate definition of machFPCurProcPtr.
ok pefo@, miod@
Diffstat (limited to 'sys/arch/mips64')
-rw-r--r-- | sys/arch/mips64/mips64/sendsig.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/arch/mips64/mips64/sendsig.c b/sys/arch/mips64/mips64/sendsig.c index d8e6284fe70..325b4cb44af 100644 --- a/sys/arch/mips64/mips64/sendsig.c +++ b/sys/arch/mips64/mips64/sendsig.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sendsig.c,v 1.6 2004/11/02 21:05:34 pefo Exp $ */ +/* $OpenBSD: sendsig.c,v 1.7 2005/12/17 21:10:24 kettenis Exp $ */ /* * Copyright (c) 1990 The Regents of the University of California. @@ -72,8 +72,6 @@ #include <machine/regnum.h> -struct proc *machFPCurProcPtr; /* pointer to last proc to use FP */ - /* * WARNING: code in locore.s assumes the layout shown for sf_signum * thru sf_handler so... don't screw with them! @@ -229,6 +227,7 @@ sys_sigreturn(p, v, retval) struct trap_frame *regs; struct sigcontext ksc; int error; + extern struct proc *machFPCurProcPtr; scp = SCARG(uap, sigcntxp); #ifdef DEBUG |