diff options
Diffstat (limited to 'src/wchar/snwprintf_s.c')
-rw-r--r-- | src/wchar/snwprintf_s.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wchar/snwprintf_s.c b/src/wchar/snwprintf_s.c index 402da30b..ea0a090f 100644 --- a/src/wchar/snwprintf_s.c +++ b/src/wchar/snwprintf_s.c @@ -4,7 +4,8 @@ int snwprintf_s(wchar_t * restrict s, rsize_t n, const wchar_t * restrict format, ...) { - __C_EXT(1, 201112L); + SIGNAL_SAFE(0); + va_list ap; va_start(ap, format); int ret = vsnwprintf_s(s, n, format, ap); |