From 821a6bb4360ae232140ba230724642fed9db613c Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 15 Mar 2001 20:04:25 +0000 Subject: 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. --- wcsmbs/wcscat.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'wcsmbs/wcscat.c') diff --git a/wcsmbs/wcscat.c b/wcsmbs/wcscat.c index c63442a546..36c02c22ec 100644 --- a/wcsmbs/wcscat.c +++ b/wcsmbs/wcscat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1995, 1996, 1997, 2001 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper , 1995. @@ -22,7 +22,7 @@ /* Append SRC on the end of DEST. */ wchar_t * -wcscat (dest, src) +__wcscat (dest, src) wchar_t *dest; const wchar_t *src; { @@ -48,3 +48,4 @@ wcscat (dest, src) return dest; } +weak_alias (__wcscat, wcscat) -- cgit 1.4.1