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