From 2e962793b28baca1dc9980d91b7d9791b2aaa198 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Tue, 30 Jan 2024 16:06:55 -0500 Subject: update safety checks --- src/wchar/fwide.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/wchar/fwide.c') 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 #include #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) { -- cgit v1.2.1