diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-03-15 20:04:25 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-03-15 20:04:25 +0000 |
commit | 821a6bb4360ae232140ba230724642fed9db613c (patch) | |
tree | 05147bc80d5444d6bf92ae8d043af817208f11f6 /posix/Versions | |
parent | 955994e1313ab81c1db2a456b5fdf7cacb016366 (diff) | |
download | glibc-821a6bb4360ae232140ba230724642fed9db613c.tar glibc-821a6bb4360ae232140ba230724642fed9db613c.tar.gz glibc-821a6bb4360ae232140ba230724642fed9db613c.tar.bz2 glibc-821a6bb4360ae232140ba230724642fed9db613c.zip |
Update.
* posix/tst-fnmatch.input: Add test case for FNM_PERIOD handling with
FNM_EXTMATCH.
* posix/fnmatch_loop.c: Optimize handling of ?() and @().
* posix/fnmatch.c: Define STRLEN and STRCAT appropriately.
* posix/Versions [libc] (GLIBC_2.2.3): Add fnmatch.
* posix/fnmatch.c: Define with new default version GLIBC_2.2.3 to
avoid running binaries with libc versions without FNM_EXTMATCH support.
* include/wchar.h: Add prototype for __wcscat.
* wcsmbs/wcscat.c: Define __wcscat and make wcscat weak alias.
Diffstat (limited to 'posix/Versions')
-rw-r--r-- | posix/Versions | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/posix/Versions b/posix/Versions index 0d04fccc22..a302f7bed3 100644 --- a/posix/Versions +++ b/posix/Versions @@ -109,4 +109,8 @@ libc { # Used in macros. __sysconf; } + GLIBC_2.2.3 { + # Extended Interface. + fnmatch; + } } |