internal static int clone_file(SafeUnixHandle link_fd, SafeUnixHandle src_fd) { return(Ioctl(link_fd, IoctlRequest.FICLONE, src_fd)); }
private static extern int Ioctl(SafeUnixHandle dst_fd, IoctlRequest request, SafeUnixHandle src_fd);