diff options
Diffstat (limited to 'config/strerror-r-posix.c')
-rw-r--r-- | config/strerror-r-posix.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/config/strerror-r-posix.c b/config/strerror-r-posix.c deleted file mode 100644 index 41b2d30..0000000 --- a/config/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)); -} |