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