aboutsummaryrefslogtreecommitdiff
path: root/wcsmbs/wcslen.c
diff options
context:
space:
mode:
Diffstat (limited to 'wcsmbs/wcslen.c')
-rw-r--r--wcsmbs/wcslen.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/wcsmbs/wcslen.c b/wcsmbs/wcslen.c
index 113bc2a..b0f1d29 100644
--- a/wcsmbs/wcslen.c
+++ b/wcsmbs/wcslen.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.
@@ -22,7 +22,7 @@
/* Copy SRC to DEST. */
size_t
-wcslen (s)
+__wcslen (s)
const wchar_t *s;
{
size_t len = 0;
@@ -40,3 +40,4 @@ wcslen (s)
return len;
}
+weak_alias (__wcslen, wcslen)