Fix lost wcslen symbol

This commit is contained in:
Andreas Schwab 2011-10-24 11:46:19 +02:00
parent bb3129bd25
commit a201fbcf9c
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2011-10-24 Andreas Schwab <schwab@redhat.com>
* wcsmbs/wcslen.c: Don't define WCSLEN, reverse logic.
2011-10-23 Ulrich Drepper <drepper@gmail.com>
* sysdeps/ieee754/dbl-64/wordsize-64/s_remquo.c: New file.

View File

@ -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;