1 # Check for stdnoreturn.h that conforms to C11.
3 dnl Copyright 2012-2018 Free Software Foundation, Inc.
4 dnl This file is free software; the Free Software Foundation
5 dnl gives unlimited permission to copy and/or distribute it,
6 dnl with or without modifications, as long as this notice is preserved.
8 # Prepare for substituting <stdnoreturn.h> if it is not supported.
10 AC_DEFUN([gl_STDNORETURN_H],
12 AC_REQUIRE([AC_CANONICAL_HOST])
15 dnl Regardless whether a working <stdnoreturn.h> exists or not,
16 dnl we need our own <stdnoreturn.h>, because of the definition
17 dnl of _Noreturn done by gnulib-common.m4.
18 STDNORETURN_H='stdnoreturn.h'
21 AC_CACHE_CHECK([for working stdnoreturn.h],
22 [gl_cv_header_working_stdnoreturn_h],
26 #include <stdnoreturn.h>
27 /* Do not check for 'noreturn' after the return type.
28 C11 allows it, but it's rarely done that way
29 and circa-2012 bleeding-edge GCC rejects it when given
30 -Werror=old-style-declaration. */
31 noreturn void foo1 (void) { exit (0); }
32 _Noreturn void foo2 (void) { exit (0); }
33 int testit (int argc, char **argv)
37 (argv[0][0] ? foo1 : foo2) ();
40 [gl_cv_header_working_stdnoreturn_h=yes],
41 [gl_cv_header_working_stdnoreturn_h=no])])
42 if test $gl_cv_header_working_stdnoreturn_h = yes; then
45 STDNORETURN_H='stdnoreturn.h'
49 AC_SUBST([STDNORETURN_H])
50 AM_CONDITIONAL([GL_GENERATE_STDNORETURN_H], [test -n "$STDNORETURN_H"])