realloc method

Pointer<Void> realloc(
  1. Pointer<Void> __ptr,
  2. int __size
)

Implementation

ffi.Pointer<ffi.Void> realloc(ffi.Pointer<ffi.Void> __ptr, int __size) {
  return _realloc(__ptr, __size);
}