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