diff options
Diffstat (limited to 'wcsmbs/wcsncat.c')
-rw-r--r-- | wcsmbs/wcsncat.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/wcsmbs/wcsncat.c b/wcsmbs/wcsncat.c index 78fe7653fd..3ab88536a2 100644 --- a/wcsmbs/wcsncat.c +++ b/wcsmbs/wcsncat.c @@ -24,10 +24,7 @@ /* Append no more than N wide-character of SRC onto DEST. */ wchar_t * -WCSNCAT (dest, src, n) - wchar_t *dest; - const wchar_t *src; - size_t n; +WCSNCAT (wchar_t *dest, const wchar_t *src, size_t n) { wchar_t c; wchar_t * const s = dest; |