fchownat method

int fchownat(
  1. int __fd,
  2. Pointer<Char> __file,
  3. int __owner,
  4. int __group,
  5. int __flag,
)

Implementation

int fchownat(
  int __fd,
  ffi.Pointer<ffi.Char> __file,
  int __owner,
  int __group,
  int __flag,
) {
  return _fchownat(
    __fd,
    __file,
    __owner,
    __group,
    __flag,
  );
}