diff options
author | 2004-05-22 23:36:27 +0000 | |
---|---|---|
committer | 2004-05-22 23:36:27 +0000 | |
commit | ccf4823aff87654f0c4a37bd1da1947e7b90618f (patch) | |
tree | 11729792339e57ddda8e661d94b1a78c93e7bcab | |
parent | Reset the board during probe. As a result, we can now honor the SCSI (diff) | |
download | wireguard-openbsd-ccf4823aff87654f0c4a37bd1da1947e7b90618f.tar.xz wireguard-openbsd-ccf4823aff87654f0c4a37bd1da1947e7b90618f.zip |
evil pasto
-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 366be878631..b39314978b7 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.1 2002/05/22 21:34:56 mickey Exp $"; +static char rcsid[] = "$OpenBSD: e_remainderf.c,v 1.2 2004/05/22 23:36:27 mickey Exp $"; #endif #include "math.h" float -__ieee754_remainder(float x, float p) +__ieee754_remainderf(float x, float p) { __asm__ __volatile__("frem,sgl %0,%1,%0" : "+f" (x) : "f" (p)); |