mirror of
git://git.musl-libc.org/musl
synced 2024-12-17 20:24:54 +00:00
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:
parent
b427c82265
commit
a7c1f9727a
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user