From 78cfcbc6577dda03fb4786743e63c7995c1b910b Mon Sep 17 00:00:00 2001 From: glass Date: Thu, 28 Nov 2013 08:15:26 +0000 Subject: * st.c (st_keys): fix not to use Qundef in st.c. * include/ruby/st.h: define modified prototype. * hash.c (rb_hash_keys): use modified st_keys(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43894 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- include/ruby/st.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/ruby') diff --git a/include/ruby/st.h b/include/ruby/st.h index fa6190dcd6..839eb1ef0b 100644 --- a/include/ruby/st.h +++ b/include/ruby/st.h @@ -120,6 +120,7 @@ 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); st_index_t st_keys(st_table *table, st_data_t *keys, st_index_t size); +st_index_t st_keys_check(st_table *table, st_data_t *keys, st_index_t size, st_data_t never); 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); -- cgit v1.2.3