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