diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-05-19 18:08:33 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-05-19 18:08:33 -0400 |
commit | 4a96b0d67d5d654ec1d5a3d447ceb07392fe87ec (patch) | |
tree | 08227f3796bffa9adb7188dbee6844957aa87a9c /build/has/attribute-format-syslog.c | |
parent | 8a74fd3f93ca7f55fd237146d663396fc81f1ac4 (diff) | |
download | bfs-4a96b0d67d5d654ec1d5a3d447ceb07392fe87ec.tar.xz |
build: Remove unused configure test
Diffstat (limited to 'build/has/attribute-format-syslog.c')
-rw-r--r-- | build/has/attribute-format-syslog.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/build/has/attribute-format-syslog.c b/build/has/attribute-format-syslog.c deleted file mode 100644 index ce988e5..0000000 --- a/build/has/attribute-format-syslog.c +++ /dev/null @@ -1,13 +0,0 @@ -// 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()"); -} |