diff options
Diffstat (limited to 'lib/libm/arch/hppa/e_remainderf.c')
-rw-r--r-- | lib/libm/arch/hppa/e_remainderf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libm/arch/hppa/e_remainderf.c b/lib/libm/arch/hppa/e_remainderf.c index b39314978b7..87e0871ec27 100644 --- a/lib/libm/arch/hppa/e_remainderf.c +++ b/lib/libm/arch/hppa/e_remainderf.c @@ -3,13 +3,13 @@ */ #if defined(LIBM_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: e_remainderf.c,v 1.2 2004/05/22 23:36:27 mickey Exp $"; +static char rcsid[] = "$OpenBSD: e_remainderf.c,v 1.3 2008/09/07 20:36:08 martynas Exp $"; #endif #include "math.h" float -__ieee754_remainderf(float x, float p) +remainderf(float x, float p) { __asm__ __volatile__("frem,sgl %0,%1,%0" : "+f" (x) : "f" (p)); |