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

* include/ruby/missing.h (cbrt): add declaration.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15706 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2008-03-06 05:06:30 +00:00
parent 53577db05b
commit be36a1b138
2 changed files with 13 additions and 5 deletions

View file

@ -87,6 +87,10 @@ extern double tgamma(double);
extern double lgamma_r(double, int *);
#endif
#ifndef HAVE_CBRT
extern double cbrt(double);
#endif
#ifndef isinf
# ifndef HAVE_ISINF
# if defined(HAVE_FINITE) && defined(HAVE_ISNAN)