* m4/stddef_h.m4 (gl_STDDEF_H): Use __GNUC_MINOR__ instead of
__GNUC_MINOR.
+2025-05-06 Collin Funk <collin.funk1@gmail.com>
+
+ stddef-h: Fix __GNUC_MINOR__ typo.
+ * m4/stddef_h.m4 (gl_STDDEF_H): Use __GNUC_MINOR__ instead of
+ __GNUC_MINOR.
+
2025-05-06 Paul Eggert <eggert@cs.ucla.edu>
obstack: let glibc user #define __obstack_free
# stddef_h.m4
-# serial 20
+# serial 21
dnl Copyright (C) 2009-2025 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
[AC_COMPILE_IFELSE([AC_LANG_SOURCE(
[[
#if \
- ((__GNUC__ == 13 && __GNUC_MINOR <= 3) \
- || (__GNUC__ == 14 && __GNUC_MINOR <= 2))
+ ((__GNUC__ == 13 && __GNUC_MINOR__ <= 3) \
+ || (__GNUC__ == 14 && __GNUC_MINOR__ <= 2))
#error "bug 114870 is present"
#endif
]])],