diff options
Diffstat (limited to 'wcsmbs/wcpcpy.c')
-rw-r--r-- | wcsmbs/wcpcpy.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/wcsmbs/wcpcpy.c b/wcsmbs/wcpcpy.c index 0c8ded32e0..a4bcfc5959 100644 --- a/wcsmbs/wcpcpy.c +++ b/wcsmbs/wcpcpy.c @@ -27,9 +27,7 @@ /* Copy SRC to DEST, returning the address of the terminating L'\0' in DEST. */ wchar_t * -__wcpcpy (dest, src) - wchar_t *dest; - const wchar_t *src; +__wcpcpy (wchar_t *dest, const wchar_t *src) { wchar_t *wcp = (wchar_t *) dest - 1; wint_t c; |