summaryrefslogtreecommitdiff
path: root/lib/ffi_yajl/dlopen.rb
blob: 50112a082a184f6678dd40eb73843e2e33a4f32f (plain)
1
2
3
4
5
6
7
8
9
10

require 'ffi'

module FFI_Yajl
  module DLopen
  extend FFI::Library
  ffi_lib 'dl'
  attach_function :dlopen, [ :string, :int ], :pointer
end