malloc method

Pointer<Void> malloc(
  1. int __size
)

Implementation

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