Add missing system.h from make install
[urcu.git] / urcu / compiler.h
index 6f6d3e97eb3693ebdd7f8cc509b2acde5c709594..4dd89ea212285e664e2cd3c35e796a9af1d73d1e 100644 (file)
@@ -18,6 +18,8 @@
  * modified is included with the above copyright notice.
  */
 
+#include <stddef.h>    /* for offsetof */
+
 #define likely(x)      __builtin_expect(!!(x), 1)
 #define unlikely(x)    __builtin_expect(!!(x), 0)
 
  */
 #define ACCESS_ONCE(x) (*(volatile typeof(x) *)&x)
 
-#if (__GNUC__ == 4)
-#define __compiler_offsetof(a, b) __builtin_offsetof(a, b)
-#endif
-
-#ifdef __compiler_offsetof
-#define offsetof(TYPE, MEMBER) __compiler_offsetof(TYPE, MEMBER)
-#else
-#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER)
-#endif
-
 #endif /* _URCU_COMPILER_H */
This page took 0.022327 seconds and 4 git commands to generate.