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.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/wchar/wcsstr.c b/src/wchar/wcsstr.c
new file mode 100644
index 00000000..22cf9fa7
--- /dev/null
+++ b/src/wchar/wcsstr.c
@@ -0,0 +1,11 @@
+#include <wchar.h>
+
+wchar_t * wcsstr(const wchar_t * s1, const wchar_t * s2)
+{
+ (void)s2;
+ return (wchar_t*)s1;
+}
+
+/*
+STDC(199409)
+*/