summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-09-27 00:17:53 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-09-27 00:17:53 +0000
commit33ed29837962e7f78b66f35abe8f85f30524f49d (patch)
tree578630cc1a1b690b4951277f944be3ef5b9f6819
parent6b64ffd2254527d28d5e73d789be3f66384ee985 (diff)
id_table.c: fix prototype names
* id_table.c: fix prototype names, missing underscore prefixes. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51949 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--id_table.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/id_table.c b/id_table.c
index 747199f9f9..b5092b855a 100644
--- a/id_table.c
+++ b/id_table.c
@@ -198,15 +198,15 @@
#endif
UNUSED(ID_TABLE_IMPL_TYPE *IMPL(create)(size_t));
-UNUSED(void IMPL(free)(ID_TABLE_IMPL_TYPE *));
-UNUSED(void IMPL(clear)(ID_TABLE_IMPL_TYPE *));
-UNUSED(size_t IMPL(size)(ID_TABLE_IMPL_TYPE *));
-UNUSED(size_t IMPL(memsize)(ID_TABLE_IMPL_TYPE *));
-UNUSED(int IMPL(insert)(ID_TABLE_IMPL_TYPE *, ID, VALUE));
-UNUSED(int IMPL(lookup)(ID_TABLE_IMPL_TYPE *, ID, VALUE *));
-UNUSED(int IMPL(delete)(ID_TABLE_IMPL_TYPE *, ID));
-UNUSED(void IMPL(foreach)(ID_TABLE_IMPL_TYPE *, rb_id_table_foreach_func_t *, void *));
-UNUSED(void IMPL(foreach_values)(ID_TABLE_IMPL_TYPE *, rb_id_table_foreach_values_func_t *, void *));
+UNUSED(void IMPL(_free)(ID_TABLE_IMPL_TYPE *));
+UNUSED(void IMPL(_clear)(ID_TABLE_IMPL_TYPE *));
+UNUSED(size_t IMPL(_size)(ID_TABLE_IMPL_TYPE *));
+UNUSED(size_t IMPL(_memsize)(ID_TABLE_IMPL_TYPE *));
+UNUSED(int IMPL(_insert)(ID_TABLE_IMPL_TYPE *, ID, VALUE));
+UNUSED(int IMPL(_lookup)(ID_TABLE_IMPL_TYPE *, ID, VALUE *));
+UNUSED(int IMPL(_delete)(ID_TABLE_IMPL_TYPE *, ID));
+UNUSED(void IMPL(_foreach)(ID_TABLE_IMPL_TYPE *, rb_id_table_foreach_func_t *, void *));
+UNUSED(void IMPL(_foreach_values)(ID_TABLE_IMPL_TYPE *, rb_id_table_foreach_values_func_t *, void *));
#if ID_TABLE_USE_ID_SERIAL
typedef rb_id_serial_t id_key_t;