Sha256: 2c03e774d69d51e3fccedb349e1c15cdca8b99ae472541b09ba40d1ccb3f1742
Contents?: true
Size: 354 Bytes
Versions: 6478
Compression:
Stored size: 354 Bytes
Contents
# frozen_string_literal: true module Ethon # FFI Wrapper module for Libc. # # @api private module Libc extend FFI::Library ffi_lib 'c' # :nodoc: def self.windows? Gem.win_platform? end unless windows? attach_function :getdtablesize, [], :int attach_function :free, [:pointer], :void end end end
Version data entries
6,478 entries across 6,476 versions & 22 rubygems