free method

void free(
  1. Pointer<Void> __ptr
)

Implementation

void free(
  ffi.Pointer<ffi.Void> __ptr,
) {
  return _free(
    __ptr,
  );
}