You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
339 B

  1. --- a/pp.c
  2. +++ b/pp.c
  3. @@ -43,7 +43,7 @@ extern Pid_t getpid (void);
  4. * Some BSDs and Cygwin default to POSIX math instead of IEEE.
  5. * This switches them over to IEEE.
  6. */
  7. -#if defined(LIBM_LIB_VERSION)
  8. +#if defined(LIBM_LIB_VERSION) && (defined(__GLIBC__) || defined(__UCLIBC__))
  9. _LIB_VERSION_TYPE _LIB_VERSION = _IEEE_;
  10. #endif