Sign in
cobalt
/
cobalt
/
b95ea55ccebda33f820d043e4b4dc85c10d7584d
/
.
/
third_party
/
llvm-project
/
compiler-rt
/
test
/
sanitizer_common
/
TestCases
/
NetBSD
/
faccessat.cc
blob: ae8be1962b8c27900ac235a0b4fc6d0771e8a444 [
file
] [
log
] [
blame
]
// RUN: %clangxx -O0 -g %s -o %t && %run %t
#include
<fcntl.h>
#include
<unistd.h>
int
main
(
void
)
{
return
faccessat
(
AT_FDCWD
,
"/root"
,
F_OK
,
0
);
}