summaryrefslogtreecommitdiff
path: root/src/wchar/wmemcmp.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wchar/wmemcmp.c')
-rw-r--r--src/wchar/wmemcmp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wchar/wmemcmp.c b/src/wchar/wmemcmp.c
index 97be69fe..693211d1 100644
--- a/src/wchar/wmemcmp.c
+++ b/src/wchar/wmemcmp.c
@@ -4,6 +4,8 @@
int wmemcmp(const wchar_t * s1, const wchar_t * s2, size_t n)
{
+ SIGNAL_SAFE(0);
+
size_t i;
for (i = 0; i < n; i++) {