mirror of
https://github.com/ruby/ruby.git
synced 2025-09-15 16:44:01 +02:00
merge revision(s) 36455:
* bignum.c: Added #include <strings.h> for ffs(). Patch by Perry Smith. Thank you. [Bug #6748] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@36560 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
2dc1a7330c
commit
0238546571
3 changed files with 11 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
Sun Jul 29 04:31:01 2012 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
||||
|
||||
* bignum.c: Added #include <strings.h> for ffs(). Patch by Perry
|
||||
Smith. Thank you. [Bug #6748]
|
||||
|
||||
Sat Jul 28 04:04:01 2012 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
||||
|
||||
* include/ruby/intern.h (rb_num_zerodiv): Added NORETURN.
|
||||
|
|
3
bignum.c
3
bignum.c
|
@ -13,6 +13,9 @@
|
|||
#include "ruby/util.h"
|
||||
#include "internal.h"
|
||||
|
||||
#ifdef HAVE_STRINGS_H
|
||||
#include <strings.h>
|
||||
#endif
|
||||
#include <math.h>
|
||||
#include <float.h>
|
||||
#include <ctype.h>
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
#define RUBY_VERSION "1.9.3"
|
||||
#define RUBY_PATCHLEVEL 254
|
||||
#define RUBY_PATCHLEVEL 255
|
||||
|
||||
#define RUBY_RELEASE_DATE "2012-07-28"
|
||||
#define RUBY_RELEASE_DATE "2012-07-29"
|
||||
#define RUBY_RELEASE_YEAR 2012
|
||||
#define RUBY_RELEASE_MONTH 7
|
||||
#define RUBY_RELEASE_DAY 28
|
||||
#define RUBY_RELEASE_DAY 29
|
||||
|
||||
#include "ruby/version.h"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue