summaryrefslogtreecommitdiff
path: root/src/wchar/wcsstr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wchar/wcsstr.c')
-rw-r--r--src/wchar/wcsstr.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wchar/wcsstr.c b/src/wchar/wcsstr.c
index 12bc2cfd..84b4020b 100644
--- a/src/wchar/wcsstr.c
+++ b/src/wchar/wcsstr.c
@@ -4,6 +4,8 @@
wchar_t * wcsstr(const wchar_t * s1, const wchar_t * s2)
{
+ SIGNAL_SAFE(0);
+
(void)s2;
return (wchar_t*)s1;
}