diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2000-01-11 08:18:44 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2000-01-11 08:18:44 +0000 |
commit | 160b8e03f4d21e7ecc3736bdee000defb5ec84e2 (patch) | |
tree | f16523381a514bcff28ad09ee07724af072f68b1 /sys/arch/hppa/spmath/dfsqrt.c | |
parent | cde3aa40e11de331af172ebeeee2fab49b0e40b9 (diff) |
remove unused nullptr arg, effectively unifying calling conventions for emulator routines
Diffstat (limited to 'sys/arch/hppa/spmath/dfsqrt.c')
-rw-r--r-- | sys/arch/hppa/spmath/dfsqrt.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/arch/hppa/spmath/dfsqrt.c b/sys/arch/hppa/spmath/dfsqrt.c index 5af5cfa36fa..cb109bf8a30 100644 --- a/sys/arch/hppa/spmath/dfsqrt.c +++ b/sys/arch/hppa/spmath/dfsqrt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dfsqrt.c,v 1.3 1998/07/02 19:05:04 mickey Exp $ */ +/* $OpenBSD: dfsqrt.c,v 1.4 2000/01/11 08:18:43 mickey Exp $ */ /* * Copyright 1996 1995 by Open Software Foundation, Inc. @@ -48,10 +48,9 @@ /*ARGSUSED*/ int -dbl_fsqrt(srcptr,nullptr,dstptr,status) +dbl_fsqrt(srcptr,dstptr,status) dbl_floating_point *srcptr, *dstptr; -void *nullptr; unsigned int *status; { register unsigned int srcp1, srcp2, resultp1, resultp2; |