summaryrefslogtreecommitdiff
path: root/sys/arch/hppa/spmath/sfsqrt.c
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2003-04-10 17:28:00 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2003-04-10 17:28:00 +0000
commitb296e783cae122b728eacdbc12edf907a1b80e34 (patch)
tree4c31745831bcaaca5e5f57ac3cff495094639ba9 /sys/arch/hppa/spmath/sfsqrt.c
parent5259dba13104372bdbaf233024b553268314c556 (diff)
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/sfsqrt.c')
-rw-r--r--sys/arch/hppa/spmath/sfsqrt.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/hppa/spmath/sfsqrt.c b/sys/arch/hppa/spmath/sfsqrt.c
index ecdc82ac337..12193a30589 100644
--- a/sys/arch/hppa/spmath/sfsqrt.c
+++ b/sys/arch/hppa/spmath/sfsqrt.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sfsqrt.c,v 1.6 2002/05/07 22:19:30 mickey Exp $ */
+/* $OpenBSD: sfsqrt.c,v 1.7 2003/04/10 17:27:59 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
-sgl_fsqrt(srcptr,dstptr,status)
- sgl_floating_point *srcptr, *dstptr;
+sgl_fsqrt(srcptr, null, dstptr, status)
+ sgl_floating_point *srcptr, *null, *dstptr;
unsigned int *status;
{
register unsigned int src, result;