* lib/xalloc.h (xalloc_die): Omit leading "/*extern*/".
It complicates syntax checking; see:
https://lists.gnu.org/r/bug-gnulib/2023-06/msg00062.html
Plus, it’s inconsistent style: the other function declarations in
xalloc.h don’t use ‘extern’. (I’m not a fan of using ‘extern’ when
it’s just noise, as is the case here.)
+2023-06-09 Paul Eggert <eggert@cs.ucla.edu>
+
+ xalloc-die: omit /*extern*/
+ * lib/xalloc.h (xalloc_die): Omit leading "/*extern*/".
+ It complicates syntax checking; see:
+ https://lists.gnu.org/r/bug-gnulib/2023-06/msg00062.html
+ Plus, it’s inconsistent style: the other function declarations in
+ xalloc.h don’t use ‘extern’. (I’m not a fan of using ‘extern’ when
+ it’s just noise, as is the case here.)
+
2023-06-06 Jim Meyering <meyering@meta.com>
maint.mk: regenerate regex to reflect new functions in xalloc.h
or by using gnulib's xalloc-die module. This is the
function to call when one wants the program to die because of a
memory allocation failure. */
-/*extern*/ _Noreturn void xalloc_die (void);
+_Noreturn void xalloc_die (void);
#endif /* GNULIB_XALLOC_DIE */