Message ID | 20210120165120.1986851-1-adhemerval.zanella@linaro.org |
---|---|
State | Committed |
Commit | d7ee6bd8c217a4deb756739039fa9c165d26ec43 |
Headers | show |
Series | [COMMITTED] posix: Fix fnmatch.c on bootstrap | expand |
diff --git a/posix/fnmatch.c b/posix/fnmatch.c index 5896812c96..b8a71f164d 100644 --- a/posix/fnmatch.c +++ b/posix/fnmatch.c @@ -64,7 +64,7 @@ extern int fnmatch (const char *pattern, const char *string, int flags); #endif #ifdef _LIBC -# if (__GNUC__ >= 7) || (__clang_major__ >= 10) +# if __GNUC__ >= 7 # define FALLTHROUGH __attribute__ ((__fallthrough__)) # else # define FALLTHROUGH ((void) 0)