openat method

int openat(
  1. int __fd,
  2. Pointer<Char> __file,
  3. int __oflag
)

Implementation

int openat(
  int __fd,
  ffi.Pointer<ffi.Char> __file,
  int __oflag,
) {
  return _openat(
    __fd,
    __file,
    __oflag,
  );
}