about summary refs log tree commit diff homepage
path: root/cmake/fstatat.c
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/fstatat.c')
-rw-r--r--cmake/fstatat.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/cmake/fstatat.c b/cmake/fstatat.c
deleted file mode 100644
index 58aa9301..00000000
--- a/cmake/fstatat.c
+++ /dev/null
@@ -1,9 +0,0 @@
-#include <fcntl.h>
-#include <stddef.h>
-#include <sys/stat.h>
-
-int main(void) {
-  struct stat buf;
-  #pragma GCC diagnostic error "-Wnonnull"
-  fstatat(0, NULL, &buf, 0);
-}