diff options
Diffstat (limited to 'config/has/strerror-r-gnu.c')
-rw-r--r-- | config/has/strerror-r-gnu.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/config/has/strerror-r-gnu.c b/config/has/strerror-r-gnu.c deleted file mode 100644 index 26ca0ee..0000000 --- a/config/has/strerror-r-gnu.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 a pointer - return *strerror_r(ENOMEM, buf, sizeof(buf)); -} |