From: Paul Eggert Date: Tue, 26 Sep 2017 18:02:26 +0000 (-0700) Subject: glob: remove bogus extern decl X-Git-Tag: v1.0~5899 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=f586d709f07128262b383017665cd9fd6d09f989;p=gnulib.git glob: remove bogus extern decl * lib/glob.c (__glob_pattern_type): Remove now-spurious extern declaration. Problem reported by Adhemerval Zanella in: https://sourceware.org/ml/libc-alpha/2017-09/msg00972.html --- diff --git a/ChangeLog b/ChangeLog index 4585cf12bc..440b90686a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2017-09-26 Paul Eggert + + glob: remove bogus extern decl + * lib/glob.c (__glob_pattern_type): Remove now-spurious + extern declaration. Problem reported by Adhemerval Zanella in: + https://sourceware.org/ml/libc-alpha/2017-09/msg00972.html + 2017-09-25 Paul Eggert uniname/uniname-tests: integer overflow fix diff --git a/lib/glob.c b/lib/glob.c index 2a5e6642e1..9d677d9826 100644 --- a/lib/glob.c +++ b/lib/glob.c @@ -205,9 +205,6 @@ glob_use_alloca (size_t alloca_used, size_t len) static int glob_in_dir (const char *pattern, const char *directory, int flags, int (*errfunc) (const char *, int), glob_t *pglob, size_t alloca_used); -extern int __glob_pattern_type (const char *pattern, int quote) - attribute_hidden; - static int prefix_array (const char *prefix, char **array, size_t n) __THROWNL; static int collated_compare (const void *, const void *) __THROWNL;