malloc method

Pointer<Void> malloc(
  1. int _Size
)

Implementation

ffi.Pointer<ffi.Void> malloc(
  int _Size,
) {
  return _malloc(
    _Size,
  );
}