summaryrefslogtreecommitdiff
path: root/wcsmbs/wcscpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'wcsmbs/wcscpy.c')
-rw-r--r--wcsmbs/wcscpy.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/wcsmbs/wcscpy.c b/wcsmbs/wcscpy.c
index 3aa897ec7f..469134ed49 100644
--- a/wcsmbs/wcscpy.c
+++ b/wcsmbs/wcscpy.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
@@ -30,7 +30,7 @@ wcscpy (dest, src)
const wchar_t *src;
{
wchar_t *wcp = (wchar_t *) src;
- wchar_t c;
+ wint_t c;
const ptrdiff_t off = dest - src - 1;
do
@@ -42,4 +42,3 @@ wcscpy (dest, src)
return dest;
}
-