about summary refs log tree commit diff
path: root/sysdeps/i386/multiarch/wcschr-i386.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/i386/multiarch/wcschr-i386.c')
-rw-r--r--sysdeps/i386/multiarch/wcschr-i386.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/sysdeps/i386/multiarch/wcschr-i386.c b/sysdeps/i386/multiarch/wcschr-i386.c
new file mode 100644
index 0000000000..de06c2409a
--- /dev/null
+++ b/sysdeps/i386/multiarch/wcschr-i386.c
@@ -0,0 +1,22 @@
+#include <wchar.h>
+
+#if IS_IN (libc)
+# undef libc_hidden_weak
+# define libc_hidden_weak(name)
+
+# undef weak_alias
+# define weak_alias(name,alias)
+
+# ifdef SHARED
+#  undef libc_hidden_def
+#  define libc_hidden_def(name) \
+   __hidden_ver1 (__wcschr_i386, __GI_wcschr, __wcschr_i386); \
+   strong_alias (__wcschr_i386, __wcschr_i386_1); \
+   __hidden_ver1 (__wcschr_i386_1, __GI___wcschr, __wcschr_i386_1);
+# endif
+#endif
+
+extern __typeof (wcschr) __wcschr_i386;
+
+#define WCSCHR  __wcschr_i386
+#include <wcsmbs/wcschr.c>