diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-08-31 18:25:55 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-08-31 18:52:00 +0200 |
commit | b41bd5bc83b23f62f6f0815d20ed1e1185c58086 (patch) | |
tree | 9c2e9a6a37de9eef8efca447fbd4a87b0d3a0923 /posix/fnmatch_loop.c | |
parent | 83b09837ed5c106840d0f069a81eed41a646bff3 (diff) | |
download | glibc-b41bd5bc83b23f62f6f0815d20ed1e1185c58086.tar.gz |
posix: Remove internal_function attribute
Diffstat (limited to 'posix/fnmatch_loop.c')
-rw-r--r-- | posix/fnmatch_loop.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/posix/fnmatch_loop.c b/posix/fnmatch_loop.c index 2500dce615..e90ee46e01 100644 --- a/posix/fnmatch_loop.c +++ b/posix/fnmatch_loop.c @@ -28,16 +28,13 @@ struct STRUCT it matches, nonzero if not. */ static int FCT (const CHAR *pattern, const CHAR *string, const CHAR *string_end, int no_leading_period, int flags, - struct STRUCT *ends, size_t alloca_used) - internal_function; + struct STRUCT *ends, size_t alloca_used); static int EXT (INT opt, const CHAR *pattern, const CHAR *string, const CHAR *string_end, int no_leading_period, int flags, - size_t alloca_used) - internal_function; -static const CHAR *END (const CHAR *patternp) internal_function; + size_t alloca_used); +static const CHAR *END (const CHAR *patternp); static int -internal_function FCT (const CHAR *pattern, const CHAR *string, const CHAR *string_end, int no_leading_period, int flags, struct STRUCT *ends, size_t alloca_used) { @@ -1000,7 +997,6 @@ FCT (const CHAR *pattern, const CHAR *string, const CHAR *string_end, static const CHAR * -internal_function END (const CHAR *pattern) { const CHAR *p = pattern; @@ -1044,7 +1040,6 @@ END (const CHAR *pattern) static int -internal_function EXT (INT opt, const CHAR *pattern, const CHAR *string, const CHAR *string_end, int no_leading_period, int flags, size_t alloca_used) { |