Fix c99 compatibility: use __typeof__ instead of typeof in public headers
[userspace-rcu.git] / urcu / system.h
index acce7e978cc9ba5d392c252612c53880ddab329f..2a45f22d9615593eda4c2c8c0ec369e500f9535c 100644 (file)
@@ -49,7 +49,7 @@
  */
 #define CMM_STORE_SHARED(x, v)         \
        ({                              \
-               typeof(x) _v = _CMM_STORE_SHARED(x, v); \
+               __typeof__(x) _v = _CMM_STORE_SHARED(x, v);     \
                cmm_smp_wmc();          \
                _v;                     \
        })
This page took 0.022199 seconds and 4 git commands to generate.