faccessat method

int faccessat(
  1. int __fd,
  2. Pointer<Char> __file,
  3. int __type,
  4. int __flag,
)

Implementation

int faccessat(
  int __fd,
  ffi.Pointer<ffi.Char> __file,
  int __type,
  int __flag,
) {
  return _faccessat(
    __fd,
    __file,
    __type,
    __flag,
  );
}