summaryrefslogtreecommitdiff
path: root/src/wchar/wcsncmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wchar/wcsncmp.c')
-rw-r--r--src/wchar/wcsncmp.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/wchar/wcsncmp.c b/src/wchar/wcsncmp.c
index 14efdb51..0caa5a9e 100644
--- a/src/wchar/wcsncmp.c
+++ b/src/wchar/wcsncmp.c
@@ -1,10 +1,12 @@
#if 0
#include <wchar.h>
-#include "_assert.h"
+#include "_safety.h"
int wcsncmp(const wchar_t * s1, const wchar_t * s2, size_t n)
{
+ SIGNAL_SAFE(0);
+
size_t i;
ASSERT_NONNULL(s1);