linkat method

int linkat(
  1. int __fromfd,
  2. Pointer<Char> __from,
  3. int __tofd,
  4. Pointer<Char> __to,
  5. int __flags,
)

Implementation

int linkat(
  int __fromfd,
  ffi.Pointer<ffi.Char> __from,
  int __tofd,
  ffi.Pointer<ffi.Char> __to,
  int __flags,
) {
  return _linkat(
    __fromfd,
    __from,
    __tofd,
    __to,
    __flags,
  );
}