1// RUN: %clangxx -O0 -g %s -o %t && %run %t
2
3#include <fcntl.h>
4#include <unistd.h>
5
6int main(void) { return faccessat(AT_FDCWD, file: "/root", F_OK, flag: 0); }
7

source code of compiler-rt/test/sanitizer_common/TestCases/NetBSD/faccessat.cpp