blob: 165c56afb8691470345e84c6da26b6d11bc66f06 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <wchar.h>
#define WCSCMP __wcscmp_ia32
#ifdef SHARED
# undef libc_hidden_def
# define libc_hidden_def(name) \
__hidden_ver1 (__wcscmp_ia32, __GI_wcscmp, __wcscmp_ia32);
#endif
extern __typeof (wcscmp) __wcscmp_ia32;
#include "wcsmbs/wcscmp.c"
|