realloc method

Pointer<Void> realloc(
  1. Pointer<Void> _Block,
  2. int _Size
)

Implementation

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