diff options
Diffstat (limited to 'src/wchar/wcstol.c')
-rw-r--r-- | src/wchar/wcstol.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wchar/wcstol.c b/src/wchar/wcstol.c index 256b0fee..414429ac 100644 --- a/src/wchar/wcstol.c +++ b/src/wchar/wcstol.c @@ -9,6 +9,8 @@ long int wcstol(const wchar_t * restrict nptr, wchar_t ** restrict endptr, int base) { + SIGNAL_SAFE(0); + long int ret = 0; long int max = LONG_MAX; long int min = LONG_MIN; |