diff options
Diffstat (limited to 'sys/arch/hppa/spmath/dfsqrt.c')
-rw-r--r-- | sys/arch/hppa/spmath/dfsqrt.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/hppa/spmath/dfsqrt.c b/sys/arch/hppa/spmath/dfsqrt.c index 91b258d64e7..5af5cfa36fa 100644 --- a/sys/arch/hppa/spmath/dfsqrt.c +++ b/sys/arch/hppa/spmath/dfsqrt.c @@ -1,3 +1,5 @@ +/* $OpenBSD: dfsqrt.c,v 1.3 1998/07/02 19:05:04 mickey Exp $ */ + /* * Copyright 1996 1995 by Open Software Foundation, Inc. * All Rights Reserved @@ -45,10 +47,12 @@ */ /*ARGSUSED*/ +int dbl_fsqrt(srcptr,nullptr,dstptr,status) dbl_floating_point *srcptr, *dstptr; -unsigned int *nullptr, *status; +void *nullptr; +unsigned int *status; { register unsigned int srcp1, srcp2, resultp1, resultp2; register unsigned int newbitp1, newbitp2, sump1, sump2; |