| Age | Commit message (Collapse) | Author |
|
Overriding functions with macros is legal in C but a lot of software
is not prepared for it. Use the extern inline method to achieve the
same result.
|
|
fortify-headers is considered part of the implementation.
|
|
It is not legal to override standard functions using macros in C++.
We may have to revisit this in the future.
|
|
|
|
|
|
Thanks Timo Teras.
|
|
|
|
|
|
We can never have an array of more than SIZE_MAX/2/sizeof(gid_t)
gid_t's.
|
|
We cannot pull stddef.h and since fortify already relies on GCC
features we can use the above typeof trick to get a usable size_t.
|
|
|
|
Not sure if including stddef.h from poll.h is acceptable.
|