summaryrefslogtreecommitdiff
path: root/src/wchar/fwide.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wchar/fwide.c')
-rw-r--r--src/wchar/fwide.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wchar/fwide.c b/src/wchar/fwide.c
index 372a811f..9623d956 100644
--- a/src/wchar/fwide.c
+++ b/src/wchar/fwide.c
@@ -3,10 +3,12 @@
#include <wchar.h>
#include <stdio.h>
#include "stdio/_stdio.h"
-#include "_assert.h"
+#include "_safety.h"
int fwide(FILE * stream, int mode)
{
+ SIGNAL_SAFE(0);
+
ASSERT_NONNULL(stream);
if (stream->orientation == 0) {