summaryrefslogtreecommitdiff
path: root/include/ruby/st.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-10-10 16:28:56 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-10-10 16:28:56 +0000
commitb28ce966c75b1ac243ca8a43cdd7e51d856828c5 (patch)
tree29bc33a79020c953b5483e1b16225ca8df315e1a /include/ruby/st.h
parentd4f37a5532b06462e958281fe51ed3a3c8f18b67 (diff)
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.h1
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);