Skip to content
This repository has been archived by the owner on Nov 18, 2021. It is now read-only.

Commit

Permalink
merge revision(s) 24750:
Browse files Browse the repository at this point in the history
	* numeric.c (round): added declaration.  [ruby-dev:39222]


git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_7@25811 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
shyouhei committed Nov 17, 2009
1 parent b9fe900 commit ce5797d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
@@ -1,3 +1,7 @@
Tue Nov 17 15:31:09 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>

* numeric.c (round): added declaration. [ruby-dev:39222]

Mon Nov 16 19:58:02 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>

* gc.c (gc_sweep): makes new room if object space is full of
Expand Down
2 changes: 2 additions & 0 deletions numeric.c
Expand Up @@ -63,6 +63,8 @@
#define DBL_EPSILON 2.2204460492503131e-16
#endif

extern double round _((double));

#ifndef HAVE_ROUND
double
round(x)
Expand Down
8 changes: 4 additions & 4 deletions version.h
@@ -1,15 +1,15 @@
#define RUBY_VERSION "1.8.7"
#define RUBY_RELEASE_DATE "2009-11-16"
#define RUBY_RELEASE_DATE "2009-11-17"
#define RUBY_VERSION_CODE 187
#define RUBY_RELEASE_CODE 20091116
#define RUBY_PATCHLEVEL 205
#define RUBY_RELEASE_CODE 20091117
#define RUBY_PATCHLEVEL 206

#define RUBY_VERSION_MAJOR 1
#define RUBY_VERSION_MINOR 8
#define RUBY_VERSION_TEENY 7
#define RUBY_RELEASE_YEAR 2009
#define RUBY_RELEASE_MONTH 11
#define RUBY_RELEASE_DAY 16
#define RUBY_RELEASE_DAY 17

#ifdef RUBY_EXTERN
RUBY_EXTERN const char ruby_version[];
Expand Down

0 comments on commit ce5797d

Please sign in to comment.