renameat method

int renameat(
  1. int __oldfd,
  2. Pointer<Int8> __old,
  3. int __newfd,
  4. Pointer<Int8> __new,
)

Implementation

int renameat(
  int __oldfd,
  ffi.Pointer<ffi.Int8> __old,
  int __newfd,
  ffi.Pointer<ffi.Int8> __new,
) {
  return _renameat(
    __oldfd,
    __old,
    __newfd,
    __new,
  );
}