1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

Mark fortified __FD_ELT as extension

This commit is contained in:
Andreas Schwab
2011-12-02 11:34:28 +01:00
parent 6257af2d05
commit d4cc29a254
2 changed files with 7 additions and 1 deletions

View File

@ -27,7 +27,8 @@ extern unsigned long int __fdelt_warn (unsigned long int __d)
__warnattr ("bit outside of fd_set selected");
#undef __FD_ELT
#define __FD_ELT(d) \
({ unsigned long int __d = d; \
__extension__ \
({ unsigned long int __d = (d); \
(__builtin_constant_p (__d) \
? (__d >= __FD_SETSIZE \
? __fdelt_warn (__d) : (__d / __NFDBITS)) \