diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-04-10 17:28:00 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2003-04-10 17:28:00 +0000 |
commit | b296e783cae122b728eacdbc12edf907a1b80e34 (patch) | |
tree | 4c31745831bcaaca5e5f57ac3cff495094639ba9 /sys/arch/hppa/spmath/frnd.c | |
parent | 5259dba13104372bdbaf233024b553268314c556 (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/frnd.c')
-rw-r--r-- | sys/arch/hppa/spmath/frnd.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/arch/hppa/spmath/frnd.c b/sys/arch/hppa/spmath/frnd.c index 188c476e438..99d17fa8119 100644 --- a/sys/arch/hppa/spmath/frnd.c +++ b/sys/arch/hppa/spmath/frnd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: frnd.c,v 1.7 2002/09/20 19:26:59 mickey Exp $ */ +/* $OpenBSD: frnd.c,v 1.8 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" @@ -26,8 +26,8 @@ /*ARGSUSED*/ int -sgl_frnd(srcptr,dstptr,status) - sgl_floating_point *srcptr, *dstptr; +sgl_frnd(srcptr, null, dstptr, status) + sgl_floating_point *srcptr, *null, *dstptr; unsigned int *status; { register unsigned int src, result; @@ -129,8 +129,8 @@ sgl_frnd(srcptr,dstptr,status) /*ARGSUSED*/ int -dbl_frnd(srcptr,dstptr,status) - dbl_floating_point *srcptr, *dstptr; +dbl_frnd(srcptr, null, dstptr, status) + dbl_floating_point *srcptr, *null, *dstptr; unsigned int *status; { register unsigned int srcp1, srcp2, resultp1, resultp2; @@ -231,8 +231,8 @@ dbl_frnd(srcptr,dstptr,status) /*ARGSUSED*/ int -quad_frnd(srcptr,dstptr,status) - quad_floating_point *srcptr, *dstptr; +quad_frnd(srcptr, null, dstptr, status) + quad_floating_point *srcptr, *null, *dstptr; unsigned int *status; { return(UNIMPLEMENTEDEXCEPTION); |