mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-13 12:40:08 +00:00
19 lines
432 B
ArmAsm
19 lines
432 B
ArmAsm
|
#include <sysdep.h>
|
||
|
|
||
|
#ifndef NOT_IN_libc
|
||
|
# undef ENTRY_CHK
|
||
|
# define ENTRY_CHK(name) \
|
||
|
.type __memset_chk_x86_64, @function; \
|
||
|
.globl __memset_chk_x86_64; \
|
||
|
.p2align 4; \
|
||
|
__memset_chk_x86_64: cfi_startproc; \
|
||
|
CALL_MCOUNT
|
||
|
# undef END_CHK
|
||
|
# define END_CHK(name) \
|
||
|
cfi_endproc; .size __memset_chk_x86_64, .-__memset_chk_x86_64
|
||
|
|
||
|
# define libc_hidden_builtin_def(name)
|
||
|
# define memset __memset_x86_64
|
||
|
# include "../memset.S"
|
||
|
#endif
|