summaryrefslogtreecommitdiff
path: root/src/wchar/fgetws.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wchar/fgetws.c')
-rw-r--r--src/wchar/fgetws.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wchar/fgetws.c b/src/wchar/fgetws.c
index 69990116..5a1b71aa 100644
--- a/src/wchar/fgetws.c
+++ b/src/wchar/fgetws.c
@@ -2,10 +2,12 @@
#include <wchar.h>
#include <stdio.h>
-#include "_assert.h"
+#include "_safety.h"
wchar_t * fgetws(wchar_t * restrict s, int n, FILE * restrict stream)
{
+ SIGNAL_SAFE(0);
+
ASSERT_NONNULL(s);
ASSERT_NONNULL(stream);