summaryrefslogtreecommitdiff
path: root/posix/glob.c
diff options
context:
space:
mode:
authorEric Blake <eblake@redhat.com>2013-09-04 17:02:47 -0600
committerEric Blake <eblake@redhat.com>2013-10-01 13:50:29 -0600
commite833b53fe618af287a0b818ac3592d842b76dec8 (patch)
tree00b480512aa4e2bf2e3652b29ee90ff675f7b895 /posix/glob.c
parentc17fdf95b69e166a777083336f7204bf4f6da2fa (diff)
glob: silence -Wattribute warnings
Colin Watson reported that some versions of gcc warn about attribute leaf used on a static function, since it has no effect on anything but external functions. * posix/glob.c (next_brace_sub, prefix_array, collated_compare): Use __THROWNL rather than __THROW on static functions. Signed-off-by: Eric Blake <eblake@redhat.com>
Diffstat (limited to 'posix/glob.c')
-rw-r--r--posix/glob.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/posix/glob.c b/posix/glob.c
index 4c7dce5ee8..ece71c168f 100644
--- a/posix/glob.c
+++ b/posix/glob.c
@@ -193,7 +193,7 @@
# define GET_LOGIN_NAME_MAX() (-1)
#endif
-static const char *next_brace_sub (const char *begin, int flags) __THROW;
+static const char *next_brace_sub (const char *begin, int flags) __THROWNL;
#endif /* !defined _LIBC || !defined GLOB_ONLY_P */
@@ -208,8 +208,8 @@ extern int __glob_pattern_type (const char *pattern, int quote)
attribute_hidden;
#if !defined _LIBC || !defined GLOB_ONLY_P
-static int prefix_array (const char *prefix, char **array, size_t n) __THROW;
-static int collated_compare (const void *, const void *) __THROW;
+static int prefix_array (const char *prefix, char **array, size_t n) __THROWNL;
+static int collated_compare (const void *, const void *) __THROWNL;
/* Find the end of the sub-pattern in a brace expression. */