blob: 2e3eca9b2b4e636292b18d32320a16f08cc81cfc (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#if defined (SHARED) && IS_IN (libc)
# define STRNCMP __strncmp_ia32
# undef libc_hidden_builtin_def
# define libc_hidden_builtin_def(name) \
__hidden_ver1 (__strncmp_ia32, __GI_strncmp, __strncmp_ia32);
#endif
#include "string/strncmp.c"
|