Module: Fiddle::Pointer::LibC
- Extended by:
- FFI::Library
- Defined in:
- lib/fiddle/ffi_backend.rb
Constant Summary collapse
- MALLOC =
attach_function :malloc, [ :size_t ], :pointer
- REALLOC =
attach_function :realloc, [ :pointer, :size_t ], :pointer
- FREE =
attach_function :free, [ :pointer ], :void