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