diff options
author | Andreas Schwab <schwab@redhat.com> | 2011-10-24 11:46:19 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@redhat.com> | 2011-10-24 12:03:33 +0200 |
commit | a201fbcf9cc3458257dff87b7fb293e57d7c64b9 (patch) | |
tree | 0d8f0ba7428f1456112d5c4bb41dbeba48a1928f /wcsmbs | |
parent | bb3129bd2503bd3339b5418cca4eef97f16128b6 (diff) | |
download | glibc-a201fbcf9cc3458257dff87b7fb293e57d7c64b9.tar.gz glibc-a201fbcf9cc3458257dff87b7fb293e57d7c64b9.tar.xz glibc-a201fbcf9cc3458257dff87b7fb293e57d7c64b9.zip |
Fix lost wcslen symbol
Diffstat (limited to 'wcsmbs')
-rw-r--r-- | wcsmbs/wcslen.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wcsmbs/wcslen.c b/wcsmbs/wcslen.c index 4d7972b7c6..991e151720 100644 --- a/wcsmbs/wcslen.c +++ b/wcsmbs/wcslen.c @@ -20,12 +20,12 @@ #include <wchar.h> /* Return length of string S. */ -#ifndef WCSLEN -# define WCSLEN __wcslen +#ifdef WCSLEN +# define __wcslen WCSLEN #endif size_t -WCSLEN (s) +__wcslen (s) const wchar_t *s; { size_t len = 0; |