* lib/obstack.c: Fix comment along the lines suggested
by Bruno Haible in:
https://lists.gnu.org/r/bug-gnulib/2025-05/msg00074.html
/* If GCC, or if an oddball (testing?) host that #defines __alignof__,
use the already-supplied __alignof__. Otherwise, this must be Gnulib
- (as glibc assumes GCC); defer to Gnulib's alignof_type. */
+ (as glibc assumes GCC); defer to Gnulib's alignof. */
#if !defined __GNUC__ && !defined __alignof__
# define __alignof__(type) alignof (type)
#endif