https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109335
Alejandro Colomar <colomar.6.4.3 at gmail dot com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |colomar.6.4.3 at gmail dot com
--- Comment #1 from Alejandro Colomar <colomar.6.4.3 at gmail dot com> ---
I can still reproduce it with GCC-13 and glibc 2.36:
$ cat glibc.c
#include <stdio.h>
int main(void)
{
printf("glibc version: %d.%d\n", __GLIBC__, __GLIBC_MINOR__);
}
$ gcc-13 -Wall -Wextra glibc.c
$ ./a.out
glibc version: 2.36
$ gcc-13 --version
gcc-13 (Debian 13.1.0-1) 13.1.0
Copyright (C) 2023 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.