sendto recvfrom getsockname getifaddrs freeifaddrs \
gai_strerror sync \
getpwent endpwent getgrent endgrent \
-cfmakeraw cfsetspeed copysign __executable_start log2 prctl)
+cfmakeraw cfsetspeed __executable_start log2 prctl)
LIBS=$OLD_LIBS
dnl No need to check for posix_memalign if aligned_alloc works.
return isnan (XFLOAT_DATA (x)) ? Qt : Qnil;
}
-#ifdef HAVE_COPYSIGN
+/* Although the substitute does not work on NaNs, it is good enough
+ for platforms lacking the signbit macro. */
+#ifndef signbit
+# define signbit(x) ((x) < 0 || (IEEE_FLOATING_POINT && !(x) && 1 / (x) < 0))
+#endif
+
DEFUN ("copysign", Fcopysign, Scopysign, 2, 2, 0,
doc: /* Copy sign of X2 to value of X1, and return the result.
Cause an error if X1 or X2 is not a float. */)
f1 = XFLOAT_DATA (x1);
f2 = XFLOAT_DATA (x2);
- return make_float (copysign (f1, f2));
+ /* Use signbit instead of copysign, to avoid calling make_float when
+ the result is X1. */
+ return signbit (f1) != signbit (f2) ? make_float (-f1) : x1;
}
-#endif
DEFUN ("frexp", Ffrexp, Sfrexp, 1, 1, 0,
doc: /* Get significand and exponent of a floating point number.
defsubr (&Ssin);
defsubr (&Stan);
defsubr (&Sisnan);
-#ifdef HAVE_COPYSIGN
defsubr (&Scopysign);
-#endif
defsubr (&Sfrexp);
defsubr (&Sldexp);
defsubr (&Sfceiling);