summaryrefslogtreecommitdiffstats
path: root/build/has/attribute-format-syslog.c
diff options
context:
space:
mode:
Diffstat (limited to 'build/has/attribute-format-syslog.c')
-rw-r--r--build/has/attribute-format-syslog.c13
1 files changed, 13 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()");
+}