1/* Some compiler optimizations may transform loops into memset/memmove
2 calls and without proper declaration it may generate PLT calls. */
3#if !defined __ASSEMBLER__ && IS_IN (libc) && defined SHARED
4asm ("memmove = __GI_memmove");
5asm ("memset = __GI_memset");
6asm ("memcpy = __GI_memcpy");
7#endif
8