diff options
Diffstat (limited to 'src/wchar/putwchar.c')
-rw-r--r-- | src/wchar/putwchar.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wchar/putwchar.c b/src/wchar/putwchar.c index 386b6913..ac61a572 100644 --- a/src/wchar/putwchar.c +++ b/src/wchar/putwchar.c @@ -5,6 +5,8 @@ wint_t putwchar(wchar_t c) { + SIGNAL_SAFE(0); + return putwc(c, stdout); } |