aboutsummaryrefslogtreecommitdiffstats
path: root/id_table.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-09-27 00:23:18 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-09-27 00:23:18 +0000
commit7f13f878cf0cdb5df4602f5bd15f255dc549f476 (patch)
tree39e12d726ddcfcfb5cba023b9909edb72eb35fe8 /id_table.c
parent33ed29837962e7f78b66f35abe8f85f30524f49d (diff)
downloadruby-7f13f878cf0cdb5df4602f5bd15f255dc549f476.tar.gz
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@51950 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'id_table.c')
-rw-r--r--id_table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/id_table.c b/id_table.c
index b5092b855a..cbfdef382f 100644
--- a/id_table.c
+++ b/id_table.c
@@ -197,7 +197,7 @@
# define UNUSED(func) static func
#endif
-UNUSED(ID_TABLE_IMPL_TYPE *IMPL(create)(size_t));
+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 *));