diff --git include/vlc_fixups.h include/vlc_fixups.h
index ee168d7..ca5d714 100644
|
|
static inline locale_t newlocale(int mask, const char * locale, locale_t base) |
239 | 239 | } |
240 | 240 | #endif |
241 | 241 | |
242 | | #if !defined (HAVE_STATIC_ASSERT) && !defined(__cpp_static_assert) |
243 | | # define _Static_assert(x, s) ((void) sizeof (struct { unsigned:-!(x); })) |
| 242 | #if !defined (HAVE_STATIC_ASSERT) && !defined(__cpp_static_assert) && !defined (static_assert) |
| 243 | # define _Static_assert(x, s) ((void) sizeof (struct { unsigned a[(x) ? 1 : -1];})) |
244 | 244 | # define static_assert _Static_assert |
245 | 245 | #endif |
246 | 246 | |