summaryrefslogtreecommitdiff
path: root/src/wchar/wcspbrk.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wchar/wcspbrk.c')
-rw-r--r--src/wchar/wcspbrk.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wchar/wcspbrk.c b/src/wchar/wcspbrk.c
index 155bbdf5..fb72904c 100644
--- a/src/wchar/wcspbrk.c
+++ b/src/wchar/wcspbrk.c
@@ -4,6 +4,8 @@
wchar_t * wcspbrk(const wchar_t * s1, const wchar_t * s2)
{
+ SIGNAL_SAFE(0);
+
int i;
for (i = 0; s1[i] != L'\0'; i++) {
if (wcschr(s2, s1[i]) != NULL) {