diff options
Diffstat (limited to 'lib/libc/locale/wcstold.c')
-rw-r--r-- | lib/libc/locale/wcstold.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/locale/wcstold.c b/lib/libc/locale/wcstold.c index 6228784f7b82f..76158c1e7441b 100644 --- a/lib/libc/locale/wcstold.c +++ b/lib/libc/locale/wcstold.c @@ -38,9 +38,9 @@ long double wcstold(const wchar_t * __restrict nptr, wchar_t ** __restrict endptr) { long double val; - char *buf, *end, *p; + char *buf, *end; const wchar_t *wcp; - size_t clen, len; + size_t len; while (iswspace(*nptr)) nptr++; |