summaryrefslogtreecommitdiff
path: root/wcsmbs/mbsinit.c
diff options
context:
space:
mode:
Diffstat (limited to 'wcsmbs/mbsinit.c')
-rw-r--r--wcsmbs/mbsinit.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/wcsmbs/mbsinit.c b/wcsmbs/mbsinit.c
index 4c9bde9476..727a9bc5e1 100644
--- a/wcsmbs/mbsinit.c
+++ b/wcsmbs/mbsinit.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 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>, 1996.
@@ -29,8 +29,9 @@
value collected so far. Especially, we don't have different shift
states. */
int
-mbsinit (ps)
+__mbsinit (ps)
const mbstate_t *ps;
{
return ps == NULL || ps->count == 0;
}
+weak_alias (__mbsinit, mbsinit)