use __builtin_offsetof to implement offsetof when possible

apparently recent gcc versions have intentionally broken the
traditional definition by treating it as a non-constant expression.
the traditional definition may also be problematic for c++ programs.
This commit is contained in:
Rich Felker 2012-12-05 00:00:42 -05:00
parent b427c82265
commit a7c1f9727a
1 changed files with 4 additions and 0 deletions

View File

@ -14,6 +14,10 @@
#include <bits/alltypes.h>
#if __GNUC__ > 3
#define offsetof(type, member) __builtin_offsetof(type, member)
#else
#define offsetof(type, member) ((size_t)( (char *)&(((type *)0)->member) - (char *)0 ))
#endif
#endif