diff options
Diffstat (limited to 'newlib/libc/string/wcsdup.c')
-rw-r--r-- | newlib/libc/string/wcsdup.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/newlib/libc/string/wcsdup.c b/newlib/libc/string/wcsdup.c index 8462c0b09..90be68e02 100644 --- a/newlib/libc/string/wcsdup.c +++ b/newlib/libc/string/wcsdup.c @@ -12,16 +12,16 @@ ANSI_SYNOPSIS wchar_t *wcsdup(const wchar_t *<[str]>); #include <wchar.h> - wchar_t *_wcsdup_r(struct _reent *<ptr>, const wchar_t *<[str]>); + wchar_t *_wcsdup_r(struct _reent *<[ptr]>, const wchar_t *<[str]>); TRAD_SYNOPSIS #include <wchar.h> - wchar_t *wcsdup(<ptr>, <[str]>) - struct _reent *<ptr>; + wchar_t *wcsdup(<[ptr]>, <[str]>) + struct _reent *<[ptr]>; wchar_t *<[str]>; DESCRIPTION - <<wcsdup>> allocates a new wide character string using <<malloc>, + <<wcsdup>> allocates a new wide character string using <<malloc>>, and copies the content of the argument <[str]> into the newly allocated string, thus making a copy of <[str]>. |