diff options
| author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-02-20 06:49:00 +0000 |
|---|---|---|
| committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-02-20 06:49:00 +0000 |
| commit | 9e65b677d2e62208b3e6d9210ee9161f997aca7c (patch) | |
| tree | b37d89adad8c16a4fbaea415792f6044f603830e | |
| parent | db40a7b86ab3f469c7f706841db6cb35c7d13689 (diff) | |
| download | ruby-9e65b677d2e62208b3e6d9210ee9161f997aca7c.tar.gz ruby-9e65b677d2e62208b3e6d9210ee9161f997aca7c.tar.xz ruby-9e65b677d2e62208b3e6d9210ee9161f997aca7c.zip | |
* missing.h (strtoul): fix prototype of strtoul.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3511 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | missing.h | 2 | ||||
| -rw-r--r-- | version.h | 6 |
3 files changed, 8 insertions, 4 deletions
@@ -1,3 +1,7 @@ +Thu Feb 20 15:45:33 2003 WATANABE Hirofumi <eban@ruby-lang.org> + + * missing.h (strtoul): fix prototype of strtoul. + Thu Feb 20 10:11:30 2003 Yukihiro Matsumoto <matz@ruby-lang.org> * parse.y (clhs): allow "Foo::Bar = x". @@ -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 @@ -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 |
