diff options
| author | Kristian Monsen <kristianm@google.com> | 2010-06-16 14:51:52 +0100 |
|---|---|---|
| committer | Kristian Monsen <kristianm@google.com> | 2010-06-16 14:51:52 +0100 |
| commit | 70465614e14a87f547cdd1b82b0b270b87d215c1 (patch) | |
| tree | 9768fde6180a592e54da1a27c75274e710e48240 /libc/stdlib | |
| parent | c0141a2bdd43015bb0b9c20a9c04f00ce3a0d2b2 (diff) | |
| download | bionic-70465614e14a87f547cdd1b82b0b270b87d215c1.zip bionic-70465614e14a87f547cdd1b82b0b270b87d215c1.tar.gz bionic-70465614e14a87f547cdd1b82b0b270b87d215c1.tar.bz2 | |
Just link fixes for b 2763938.
Added wcsxfrm.c and wmemcmp.c to the src files in Android.mk and removed wcsxfrm from wchar.c
Change-Id: Iab9b45cf78c27880d2941c360340a7af6b8964fe
Diffstat (limited to 'libc/stdlib')
| -rw-r--r-- | libc/stdlib/wchar.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/libc/stdlib/wchar.c b/libc/stdlib/wchar.c index 1480212..d83613a 100644 --- a/libc/stdlib/wchar.c +++ b/libc/stdlib/wchar.c @@ -302,12 +302,6 @@ wchar_t *wcswcs(const wchar_t *ws1, const wchar_t *ws2) return (wchar_t*) strstr( (const char*)ws1, (const char*)ws2 ); } -size_t wcsxfrm(wchar_t *ws1, const wchar_t *ws2, size_t n) -{ - memcpy( (char*)ws1, (const char*)ws2, n ); - return n; -} - int wctob(wint_t c) { return c; |
