aboutsummaryrefslogtreecommitdiffstats
path: root/ext/fiddle
diff options
context:
space:
mode:
authornormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-19 20:56:08 +0000
committernormal <normal@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2015-10-19 20:56:08 +0000
commit419e7813e9724184138f09c8e62ec35ce03eb198 (patch)
tree65bae82cfcdb763775520fd12ef0c913181b6668 /ext/fiddle
parent45ebea2f5feb834cd398e31eb786e16d672c2918 (diff)
downloadruby-419e7813e9724184138f09c8e62ec35ce03eb198.tar.gz
ext/fiddle/closure.c (callback): static function
The `callback' function is not used outside of closure.c and should not be able to cause namespace conflicts in compilers without visibility pragmas. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52198 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext/fiddle')
-rw-r--r--ext/fiddle/closure.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/fiddle/closure.c b/ext/fiddle/closure.c
index d857bfe870..ca1b10a61b 100644
--- a/ext/fiddle/closure.c
+++ b/ext/fiddle/closure.c
@@ -55,7 +55,7 @@ const rb_data_type_t closure_data_type = {
{0, dealloc, closure_memsize,},
};
-void
+static void
callback(ffi_cif *cif, void *resp, void **args, void *ctx)
{
VALUE self = (VALUE)ctx;