summaryrefslogtreecommitdiffstats
path: root/libgnu/fnmatch.c
diff options
context:
space:
mode:
Diffstat (limited to 'libgnu/fnmatch.c')
-rw-r--r--libgnu/fnmatch.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/libgnu/fnmatch.c b/libgnu/fnmatch.c
index 709d4ff1..0fa0a3db 100644
--- a/libgnu/fnmatch.c
+++ b/libgnu/fnmatch.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991-1993, 1996-2007, 2009-2017 Free Software Foundation, Inc.
+/* Copyright (C) 1991-1993, 1996-2007, 2009-2018 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -11,7 +11,7 @@
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
- along with this program; if not, see <http://www.gnu.org/licenses/>. */
+ along with this program; if not, see <https://www.gnu.org/licenses/>. */
#ifndef _LIBC
# include <config.h>
@@ -65,6 +65,14 @@ extern int fnmatch (const char *pattern, const char *string, int flags);
#include "flexmember.h"
+#ifndef FALLTHROUGH
+# if __GNUC__ < 7
+# define FALLTHROUGH ((void) 0)
+# else
+# define FALLTHROUGH __attribute__ ((__fallthrough__))
+# endif
+#endif
+
/* We often have to test for FNM_FILE_NAME and FNM_PERIOD being both set. */
#define NO_LEADING_PERIOD(flags) \
((flags & (FNM_FILE_NAME | FNM_PERIOD)) == (FNM_FILE_NAME | FNM_PERIOD))