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 (signbit): add missing prototype.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@27807 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2010-05-16 02:39:18 +00:00
parent 37910b13fb
commit e2f2cf425c
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,7 @@
Sun May 16 11:39:15 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
* include/ruby/missing.h (signbit): add missing prototype.
Sun May 16 10:49:47 2010 Nobuyoshi Nakada <nobu@ruby-lang.org> Sun May 16 10:49:47 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
* ext/iconv/iconv.c (rb_iconv_sys_fail): fix number of arguments. * ext/iconv/iconv.c (rb_iconv_sys_fail): fix number of arguments.

View file

@ -159,6 +159,10 @@ RUBY_EXTERN size_t strlcpy(char *, const char*, size_t);
RUBY_EXTERN size_t strlcat(char *, const char*, size_t); RUBY_EXTERN size_t strlcat(char *, const char*, size_t);
#endif #endif
#ifndef HAVE_SIGNBIT
RUBY_EXTERN int signbit(double x);
#endif
#ifndef HAVE_FFS #ifndef HAVE_FFS
RUBY_EXTERN int ffs(int); RUBY_EXTERN int ffs(int);
#endif #endif