summaryrefslogtreecommitdiff
path: root/src/wchar/wcsxfrm.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wchar/wcsxfrm.c')
-rw-r--r--src/wchar/wcsxfrm.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/wchar/wcsxfrm.c b/src/wchar/wcsxfrm.c
new file mode 100644
index 00000000..acc87510
--- /dev/null
+++ b/src/wchar/wcsxfrm.c
@@ -0,0 +1,11 @@
+#include <wchar.h>
+
+size_t wcsxfrm(wchar_t * restrict s1, const wchar_t * restrict s2, size_t n)
+{
+ (void)s1; (void)s2; (void)n;
+ return 0;
+}
+
+/*
+STDC(199409)
+*/