1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

PowerPC: multiarch wcscpy for PowerPC32

This commit is contained in:
Adhemerval Zanella
2013-10-14 09:43:31 -05:00
parent bb04e529f6
commit 93be09e725
10 changed files with 150 additions and 7 deletions

View File

@ -20,9 +20,13 @@
#include <wchar.h>
#ifndef WCSCPY
# define WCSCPY wcscpy
#endif
/* Copy SRC to DEST. */
wchar_t *
wcscpy (dest, src)
WCSCPY (dest, src)
wchar_t *dest;
const wchar_t *src;
{