summaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-10-30 18:20:54 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-10-30 18:20:54 +0000
commit2c0701f65879cbf5d446362e49b2d6f5eeb9b0a6 (patch)
tree916a076a42f5488c6c4257b50f1b02cfb7945a97 /util.h
parent548795273ca873eabcddd442afc464ccd10ae97c (diff)
* ext/readline/readline.c (readline_readline): type check.
[ruby-core:6089] * numeric.c (fix_rshift): RDoc fix. [ruby-core:6351] * util.h (strtod): add #undef for platforms defines strtod() macro. [ruby-dev:27563] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@9483 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'util.h')
-rw-r--r--util.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/util.h b/util.h
index ca879cab5e..b00c096dec 100644
--- a/util.h
+++ b/util.h
@@ -61,6 +61,7 @@ char *ruby_getcwd _((void));
#define my_getcwd() ruby_getcwd()
double ruby_strtod _((const char*, char **));
+#undef strtod
#define strtod(s,e) ruby_strtod(s,e)
#endif /* UTIL_H */