summaryrefslogtreecommitdiffstats
path: root/config/has/statx-syscall.c
diff options
context:
space:
mode:
Diffstat (limited to 'config/has/statx-syscall.c')
-rw-r--r--config/has/statx-syscall.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/config/has/statx-syscall.c b/config/has/statx-syscall.c
deleted file mode 100644
index 87ec869..0000000
--- a/config/has/statx-syscall.c
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright © Tavian Barnes <tavianator@tavianator.com>
-// SPDX-License-Identifier: 0BSD
-
-#include <fcntl.h>
-#include <linux/stat.h>
-#include <sys/syscall.h>
-#include <unistd.h>
-
-int main(void) {
- struct statx sb;
- syscall(SYS_statx, AT_FDCWD, ".", 0, STATX_BASIC_STATS, &sb);
- return 0;
-}