2013-06-12 10:21:22 -05:00
|
|
|
/* Some compiler optimizations may transform loops into memset/memmove
|
|
|
|
calls and without proper declaration it may generate PLT calls. */
|
|
|
|
#if !defined __ASSEMBLER__ && !defined NOT_IN_libc && defined SHARED
|
|
|
|
asm ("memmove = __GI_memmove");
|
|
|
|
asm ("memset = __GI_memset");
|
|
|
|
#endif
|