aboutsummaryrefslogtreecommitdiff
path: root/test/sanitizer_common/TestCases/NetBSD/faccessat.cc
blob: ae8be1962b8c27900ac235a0b4fc6d0771e8a444 (plain) (blame)
1
2
3
4
5
6
// 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); }