diff options
Diffstat (limited to 'compat')
-rw-r--r-- | compat/attrs.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/compat/attrs.h b/compat/attrs.h index 83f1777..0d13073 100644 --- a/compat/attrs.h +++ b/compat/attrs.h @@ -79,6 +79,13 @@ #define NORETURN /* no attribute */ #endif +/* we don't need an explicit break statement in this case block */ +#if GCC_VERSION(7, 0) +#define FALLTHROUGH __attribute__((fallthrough)) +#else +#define FALLTHROUGH /* no attribute */ +#endif + /* define __STRING if it's not yet defined */ #ifndef __STRING #ifdef __STDC__ |