summaryrefslogtreecommitdiff
path: root/src/wchar/wcstol.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wchar/wcstol.c')
-rw-r--r--src/wchar/wcstol.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wchar/wcstol.c b/src/wchar/wcstol.c
index 414429ac..54cbf696 100644
--- a/src/wchar/wcstol.c
+++ b/src/wchar/wcstol.c
@@ -10,6 +10,7 @@
long int wcstol(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base)
{
SIGNAL_SAFE(0);
+ /* TODO: overlap */
long int ret = 0;
long int max = LONG_MAX;