PyObject_Malloc method

Pointer<Void> PyObject_Malloc(
  1. int size
)

Implementation

ffi.Pointer<ffi.Void> PyObject_Malloc(
  int size,
) {
  return _PyObject_Malloc(
    size,
  );
}