diff options
Diffstat (limited to 'wcsmbs/wcscmp.c')
-rw-r--r-- | wcsmbs/wcscmp.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/wcsmbs/wcscmp.c b/wcsmbs/wcscmp.c index 08da116787..2cc31992d2 100644 --- a/wcsmbs/wcscmp.c +++ b/wcsmbs/wcscmp.c @@ -1,6 +1,6 @@ /* Copyright (C) 1995, 1996 Free Software Foundation, Inc. This file is part of the GNU C Library. -Contributed by Ulrich Drepper, <drepper@gnu.ai.mit.edu> +Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995. The GNU C Library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as @@ -13,9 +13,9 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public -License along with the GNU C Library; see the file COPYING.LIB. If -not, write to the Free Software Foundation, Inc., 675 Mass Ave, -Cambridge, MA 02139, USA. */ +License along with the GNU C Library; see the file COPYING.LIB. If +not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, +Boston, MA 02111-1307, USA. */ #include <wchar.h> @@ -28,12 +28,12 @@ wcscmp (s1, s2) const wchar_t *s1; const wchar_t *s2; { - uwchar_t c1, c2; + wint_t c1, c2; do { - c1 = (uwchar_t) *s1++; - c2 = (uwchar_t) *s2++; + c1 = (wint_t) *s1++; + c2 = (wint_t) *s2++; if (c1 == L'\0') return c1 - c2; } |