about summary refs log tree commit diff
path: root/sysdeps/i386/i686/multiarch/wcschr-c.c
blob: 786c132fcd4c0e3274176b663d9f45e77c3f63d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <wchar.h>

#if IS_IN (libc)
# ifdef SHARED
#  undef libc_hidden_def
#  define libc_hidden_def(name) \
   __hidden_ver1 (__wcschr_ia32, __GI_wcschr, __wcschr_ia32); \
   strong_alias (__wcschr_ia32, __wcschr_ia32_1); \
   __hidden_ver1 (__wcschr_ia32_1, __GI___wcschr, __wcschr_ia32_1);
# endif
# define WCSCHR  __wcschr_ia32
#endif

extern __typeof (wcschr) __wcschr_ia32;

#include "wcsmbs/wcschr.c"