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