(int) fd_old, sample_1, (int) fd_new, sample_2, rc,
errno == ENOSYS ? "ENOSYS" : "EBADF");
+ rc = syscall(__NR_linkat, -100, sample_1, -100, sample_2, -1L);
+ printf("linkat(%s, \"%s\", %s, \"%s\", %s) = %d %s (%m)\n",
+ "AT_FDCWD", sample_1, "AT_FDCWD", sample_2,
+ "AT_SYMLINK_NOFOLLOW|AT_REMOVEDIR|AT_SYMLINK_FOLLOW"
+ "|AT_NO_AUTOMOUNT|AT_EMPTY_PATH|0xffffe0ff",
+ rc, errno == ENOSYS ? "ENOSYS" : "EINVAL");
+
puts("+++ exited with 0 +++");
return 0;
}