From db0539c4479eb7c6a1848e606ed570d0c48dc607 Mon Sep 17 00:00:00 2001 From: eban Date: Thu, 20 Feb 2003 06:49:00 +0000 Subject: * missing.h (strtoul): fix prototype of strtoul. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3511 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ missing.h | 2 +- version.h | 6 +++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index f6fcf5b605..6650b0a0ef 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Thu Feb 20 15:45:33 2003 WATANABE Hirofumi + + * missing.h (strtoul): fix prototype of strtoul. + Thu Feb 20 10:11:30 2003 Yukihiro Matsumoto * parse.y (clhs): allow "Foo::Bar = x". diff --git a/missing.h b/missing.h index 877ee6bf7e..33dff9bacc 100644 --- a/missing.h +++ b/missing.h @@ -114,7 +114,7 @@ extern long strtol _((char *, char **, int)); */ #ifndef HAVE_STRTOUL -extern long strtoul _((char *, char **, int)); +extern unsigned long strtoul _((char *, char **, int)); #endif #ifndef HAVE_VSNPRINTF diff --git a/version.h b/version.h index dcfa9b4305..ecc3bf4cce 100644 --- a/version.h +++ b/version.h @@ -1,11 +1,11 @@ #define RUBY_VERSION "1.8.0" -#define RUBY_RELEASE_DATE "2003-02-19" +#define RUBY_RELEASE_DATE "2003-02-20" #define RUBY_VERSION_CODE 180 -#define RUBY_RELEASE_CODE 20030219 +#define RUBY_RELEASE_CODE 20030220 #define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MINOR 8 #define RUBY_VERSION_TEENY 0 #define RUBY_RELEASE_YEAR 2003 #define RUBY_RELEASE_MONTH 02 -#define RUBY_RELEASE_DAY 19 +#define RUBY_RELEASE_DAY 20 -- cgit v1.2.3