open method

int open(
  1. Pointer<Char> __file,
  2. int __oflag
)

Implementation

int open(
  ffi.Pointer<ffi.Char> __file,
  int __oflag,
) {
  return _open(
    __file,
    __oflag,
  );
}