summaryrefslogtreecommitdiffstats
path: root/build/has/getdents64-syscall.c
diff options
context:
space:
mode:
Diffstat (limited to 'build/has/getdents64-syscall.c')
-rw-r--r--build/has/getdents64-syscall.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/build/has/getdents64-syscall.c b/build/has/getdents64-syscall.c
new file mode 100644
index 0000000..7642d93
--- /dev/null
+++ b/build/has/getdents64-syscall.c
@@ -0,0 +1,11 @@
+// Copyright © Tavian Barnes <tavianator@tavianator.com>
+// SPDX-License-Identifier: 0BSD
+
+#include <dirent.h>
+#include <sys/syscall.h>
+#include <unistd.h>
+
+int main(void) {
+ char buf[1024];
+ return syscall(SYS_getdents64, 3, (void *)buf, sizeof(buf));
+}