Author: ngie
Date: Mon Oct 13 02:32:37 2014
New Revision: 273023
URL: https://svnweb.freebsd.org/changeset/base/273023

Log:
  __isnanl is automatically picked according to data type in <math.h>. There
  isn't a need for the explicit __isnanl test
  
  Sponsored by: EMC / Isilon Storage Division

Modified:
  head/contrib/netbsd-tests/lib/libc/stdlib/t_strtod.c

Modified: head/contrib/netbsd-tests/lib/libc/stdlib/t_strtod.c
==============================================================================
--- head/contrib/netbsd-tests/lib/libc/stdlib/t_strtod.c        Mon Oct 13 
02:29:58 2014        (r273022)
+++ head/contrib/netbsd-tests/lib/libc/stdlib/t_strtod.c        Mon Oct 13 
02:32:37 2014        (r273023)
@@ -221,7 +221,9 @@ ATF_TC_BODY(strtold_nan, tc)
 
        volatile long double ld = strtold(nan_string, &end);
        ATF_REQUIRE(isnan(ld) != 0);
+#if !defined(__FreeBSD__)
        ATF_REQUIRE(__isnanl(ld) != 0);
+#endif
        ATF_REQUIRE(strcmp(end, "y") == 0);
 #   else
        atf_tc_skip("Requires long double support");
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to