PyObject_Realloc method

Pointer<Void> PyObject_Realloc(
  1. Pointer<Void> ptr,
  2. int new_size
)

Implementation

ffi.Pointer<ffi.Void> PyObject_Realloc(
  ffi.Pointer<ffi.Void> ptr,
  int new_size,
) {
  return _PyObject_Realloc(
    ptr,
    new_size,
  );
}