diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-02 06:24:27 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-02 06:24:27 +0000 |
commit | 0352d32f05b42bb31fe98e0fa3582ef4e4689e79 (patch) | |
tree | 9f6bc245a678bd5c4d451053ab221395692c4d30 /include/ruby/missing.h | |
parent | aac5220c666dcb84db1c39247aaf0fd394869b89 (diff) |
* util.c (ruby_strtoul): locale independent strtoul is implemented to
avoid "i".to_i(36) cause 0 under tr_TR locale.
This is newly implemented, not a copy of missing/strtoul.c.
* include/ruby/ruby.h (ruby_strtoul): declared.
(STRTOUL): defined to use ruby_strtoul.
* bignum.c, pack.c, ext/socket/socket.c: use STRTOUL.
* configure.in (strtoul): don't check.
* missing/strtoul.c: removed.
* include/ruby/missing.h (strtoul): removed.
* common.mk (strtoul.o): removed.
* LEGAL (missing/strtoul.c): removed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14850 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby/missing.h')
-rw-r--r-- | include/ruby/missing.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/ruby/missing.h b/include/ruby/missing.h index 68cd844080..db32057779 100644 --- a/include/ruby/missing.h +++ b/include/ruby/missing.h @@ -133,10 +133,6 @@ extern long strtol(const char *, char **, int); #endif */ -#ifndef HAVE_STRTOUL -extern unsigned long strtoul(const char *, char **, int); -#endif - #ifndef HAVE_VSNPRINTF # include <stdarg.h> extern int snprintf(char *, size_t n, char const *, ...); |