diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2000-01-11 08:25:09 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2000-01-11 08:25:09 +0000 |
commit | a853761906afe1426f60be8219e87cf8e5d0c85d (patch) | |
tree | 43af15088d910461b09fa06fb8dc702980ce32f0 /sys/arch/hppa/spmath | |
parent | 160b8e03f4d21e7ecc3736bdee000defb5ec84e2 (diff) |
remove unused nullptr arg, effectively unifying calling conventions for emulator routines
Diffstat (limited to 'sys/arch/hppa/spmath')
-rw-r--r-- | sys/arch/hppa/spmath/sgl_float.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/hppa/spmath/sgl_float.h b/sys/arch/hppa/spmath/sgl_float.h index bac3d56215d..dd36669753f 100644 --- a/sys/arch/hppa/spmath/sgl_float.h +++ b/sys/arch/hppa/spmath/sgl_float.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sgl_float.h,v 1.3 1998/07/02 19:06:03 mickey Exp $ */ +/* $OpenBSD: sgl_float.h,v 1.4 2000/01/11 08:25:08 mickey Exp $ */ /* * Copyright 1996 1995 by Open Software Foundation, Inc. @@ -339,7 +339,7 @@ int sgl_fcmp __P((sgl_floating_point *, sgl_floating_point *, unsigned int, unsi int sgl_fdiv __P((sgl_floating_point *, sgl_floating_point *, sgl_floating_point *, unsigned int *)); int sgl_fmpy __P((sgl_floating_point *, sgl_floating_point *, sgl_floating_point *, unsigned int *)); int sgl_frem __P((sgl_floating_point *, sgl_floating_point *, sgl_floating_point *, unsigned int *)); -int sgl_fsqrt __P((sgl_floating_point *, void *, sgl_floating_point *, unsigned int *)); +int sgl_fsqrt __P((sgl_floating_point *, sgl_floating_point *, unsigned int *)); int sgl_fsub __P((sgl_floating_point *, sgl_floating_point *, sgl_floating_point *, unsigned int *)); -int sgl_frnd __P((sgl_floating_point *, void *, sgl_floating_point *, unsigned int *)); +int sgl_frnd __P((sgl_floating_point *, sgl_floating_point *, unsigned int *)); |