diff options
author | 2003-04-10 17:27:58 +0000 | |
---|---|---|
committer | 2003-04-10 17:27:58 +0000 | |
commit | 7eec34da5ce3d990cd99bf62b82bcd810afc1ed3 (patch) | |
tree | 60ac82d0326e9a40ae7808f0cf297b2d167182a7 /sys/arch/hppa/spmath/dfsqrt.c | |
parent | deallocate resources on failures; pt out by tedu@; millert@ ok (diff) | |
download | wireguard-openbsd-7eec34da5ce3d990cd99bf62b82bcd810afc1ed3.tar.xz wireguard-openbsd-7eec34da5ce3d990cd99bf62b82bcd810afc1ed3.zip |
make all entry points of the same number of arguments and that greatly simplifies the call setup in the scheduler
Diffstat (limited to 'sys/arch/hppa/spmath/dfsqrt.c')
-rw-r--r-- | sys/arch/hppa/spmath/dfsqrt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/hppa/spmath/dfsqrt.c b/sys/arch/hppa/spmath/dfsqrt.c index 2043820eeda..1d6ed622c53 100644 --- a/sys/arch/hppa/spmath/dfsqrt.c +++ b/sys/arch/hppa/spmath/dfsqrt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dfsqrt.c,v 1.6 2002/05/07 22:19:30 mickey Exp $ */ +/* $OpenBSD: dfsqrt.c,v 1.7 2003/04/10 17:27:58 mickey Exp $ */ /* (c) Copyright 1986 HEWLETT-PACKARD COMPANY To anyone who acknowledges that this file is provided "AS IS" @@ -23,8 +23,8 @@ /*ARGSUSED*/ int -dbl_fsqrt(srcptr,dstptr,status) - dbl_floating_point *srcptr, *dstptr; +dbl_fsqrt(srcptr, null, dstptr, status) + dbl_floating_point *srcptr, *null, *dstptr; unsigned int *status; { register unsigned int srcp1, srcp2, resultp1, resultp2; |