* lib/c-stack.c: Test GNU C version directly, without __GNUC_PREREQ.
+2021-04-14 Bruno Haible <bruno@clisp.org>
+
+ c-stack: Don't use an undefined C macro (regression from 2020-10-04).
+ * lib/c-stack.c: Test GNU C version directly, without __GNUC_PREREQ.
+
2021-04-12 Bruno Haible <bruno@clisp.org>
doc: Fix confusion between LIBADD and LDADD.
#if USE_LIBSIGSEGV
/* Pacify GCC 9.3.1, which otherwise would complain about segv_handler. */
-# if __GNUC_PREREQ (4, 6)
+# if 4 < __GNUC__ + (6 <= __GNUC_MINOR__)
# pragma GCC diagnostic ignored "-Wsuggest-attribute=pure"
# endif