summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
Diffstat (limited to 'build')
-rw-r--r--build/has/attribute-format-syslog.c13
-rw-r--r--build/has/posix-getdents.c9
-rw-r--r--build/header.mk1
3 files changed, 23 insertions, 0 deletions
diff --git a/build/has/attribute-format-syslog.c b/build/has/attribute-format-syslog.c
new file mode 100644
index 0000000..ce988e5
--- /dev/null
+++ b/build/has/attribute-format-syslog.c
@@ -0,0 +1,13 @@
+// Copyright © Tavian Barnes <tavianator@tavianator.com>
+// SPDX-License-Identifier: 0BSD
+
+#include <stdio.h>
+
+__attribute__((format(syslog, 1, 2)))
+static int foo(const char *format, ...) {
+ return 0;
+}
+
+int main(void) {
+ return foo("%s: %m\n", "main()");
+}
diff --git a/build/has/posix-getdents.c b/build/has/posix-getdents.c
new file mode 100644
index 0000000..f74bbe5
--- /dev/null
+++ b/build/has/posix-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 posix_getdents(3, (void *)buf, sizeof(buf), 0);
+}
diff --git a/build/header.mk b/build/header.mk
index 3cea6d7..a449b77 100644
--- a/build/header.mk
+++ b/build/header.mk
@@ -32,6 +32,7 @@ HEADERS := \
gen/has/getprogname.h \
gen/has/max-align-t.h \
gen/has/pipe2.h \
+ gen/has/posix-getdents.h \
gen/has/posix-spawn-addfchdir-np.h \
gen/has/posix-spawn-addfchdir.h \
gen/has/st-acmtim.h \