1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/bigdecimal/bigdecimal.c (isfinite): get rid of a warning on

cygwin. [Bug #12417][ruby-core:75691]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55133 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2016-05-23 11:21:11 +00:00
parent 9f0cf20fbd
commit b9da060bd8
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Mon May 23 20:20:12 2016 NAKAMURA Usaku <usa@ruby-lang.org>
* ext/bigdecimal/bigdecimal.c (isfinite): get rid of a warning on
cygwin. [Bug #12417][ruby-core:75691]
Mon May 23 19:41:27 2016 Kazuki Yamaguchi <k@rhe.jp>
* ext/openssl/ossl_rand.c (ossl_rand_egd, ossl_rand_egd_bytes):

View file

@ -30,7 +30,7 @@
#include <ieeefp.h>
#endif
#if !defined(HAVE_ISFINITE) && defined(HAVE_FINITE)
#if !defined(HAVE_ISFINITE) && defined(HAVE_FINITE) && !defined(isfinite)
# define isfinite(x) finite(x)
#endif