blob: ce576c9fd26d9f4fd9f9b24fb438c23c3c44c775 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001/* 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