py_malloc method

Pointer<Void> py_malloc(
  1. int size
)

Wrapper for PK_MALLOC(size).

Implementation

ffi.Pointer<ffi.Void> py_malloc(
  int size,
) {
  return _py_malloc(
    size,
  );
}