mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-29 11:41:21 +03:00
Update.
* sys/types.h: Protect use of long long by __extension__. * stdlib/stdlib.h: Likewise. * string/string.h: Likewise. * sysdeps/i386/bits/byteswap.h: Likewise. * sysdeps/geeric/bits/byteswap.h: Likewise. * sysdeps/i386/fpu/bits/mathinline.h: Likewise. * sysdeps/unix/sysv/linux/bits/types.h: Likewise. * sysdeps/unix/sysv/linux/mips/bits/types.h: Likewise. * sysdeps/wordsize-32/inttypes.h: Likewise. * sysdeps/wordsize-32/stdint.h: Likewise. * wcsmbs/wchar.h: Likewise.
This commit is contained in:
@ -239,7 +239,8 @@ extern int ffs __P ((int __i)) __attribute__ ((const));
|
||||
# ifdef __USE_GNU
|
||||
extern int ffsl __P ((long int __l)) __attribute__ ((const));
|
||||
# ifdef __GNUC__
|
||||
extern int ffsll __P ((long long int __ll)) __attribute__ ((const));
|
||||
__extension__ extern int ffsll __P ((long long int __ll))
|
||||
__attribute__ ((const));
|
||||
# endif
|
||||
# endif
|
||||
|
||||
|
Reference in New Issue
Block a user