diff options
author | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-06-05 12:47:48 +0000 |
---|---|---|
committer | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-06-05 12:47:48 +0000 |
commit | eef10d71ddff0c5e6f7f5fe8f55d57a77075ebc9 (patch) | |
tree | f94c41a22473dcf0904ddfa15ba1b1ccb8105d4b /util.c | |
parent | 55fece63794c94af83cae9509211e680bde32961 (diff) | |
download | bundler-eef10d71ddff0c5e6f7f5fe8f55d57a77075ebc9.tar.gz |
* st.c (st_reverse_foreach): comment out unused function.
* util.c (dtoa): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16844 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -3265,6 +3265,7 @@ freedtoa(char *s) * calculation. */ +#if 0 /* unused right now */ char * dtoa(double d, int mode, int ndigits, int *decpt, int *sign, char **rve) { @@ -3934,6 +3935,7 @@ ret1: *rve = s; return s0; } +#endif void ruby_each_words(const char *str, void (*func)(const char*, int, void*), void *arg) |