diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-10-10 16:28:56 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-10-10 16:28:56 +0000 |
commit | b28ce966c75b1ac243ca8a43cdd7e51d856828c5 (patch) | |
tree | 29bc33a79020c953b5483e1b16225ca8df315e1a /include/ruby/st.h | |
parent | d4f37a5532b06462e958281fe51ed3a3c8f18b67 (diff) | |
download | ruby-b28ce966c75b1ac243ca8a43cdd7e51d856828c5.tar.gz |
st.c: revert st_keys
* st.c: revert st_keys() at r43238. VALUE cannot be in st.c.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43243 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby/st.h')
-rw-r--r-- | include/ruby/st.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/ruby/st.h b/include/ruby/st.h index 5968a1fc22..e71301b519 100644 --- a/include/ruby/st.h +++ b/include/ruby/st.h @@ -112,7 +112,6 @@ int st_update(st_table *table, st_data_t key, st_update_callback_func *func, st_ int st_foreach(st_table *, int (*)(ANYARGS), st_data_t); int st_foreach_check(st_table *, int (*)(ANYARGS), st_data_t, st_data_t); int st_reverse_foreach(st_table *, int (*)(ANYARGS), st_data_t); -VALUE st_keys(st_table *table); void st_add_direct(st_table *, st_data_t, st_data_t); void st_free_table(st_table *); void st_cleanup_safe(st_table *, st_data_t); |