summaryrefslogtreecommitdiffstats
path: root/config/has/strerror-r-posix.c
diff options
context:
space:
mode:
Diffstat (limited to 'config/has/strerror-r-posix.c')
-rw-r--r--config/has/strerror-r-posix.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/config/has/strerror-r-posix.c b/config/has/strerror-r-posix.c
deleted file mode 100644
index 41b2d30..0000000
--- a/config/has/strerror-r-posix.c
+++ /dev/null
@@ -1,11 +0,0 @@
-// Copyright © Tavian Barnes <tavianator@tavianator.com>
-// SPDX-License-Identifier: 0BSD
-
-#include <errno.h>
-#include <string.h>
-
-int main(void) {
- char buf[256];
- // Check that strerror_r() returns an integer
- return 2 * strerror_r(ENOMEM, buf, sizeof(buf));
-}