blob: 39f72b6a1c3260ab43088487d5138fdafbc969de (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifdef SHARED
# define __mempcpy __mempcpy_i386
# define __mempcpy_chk __mempcpy_chk_i386
# undef libc_hidden_builtin_def
# define libc_hidden_builtin_def(name)
# undef libc_hidden_def
# define libc_hidden_def(name)
# undef weak_alias
# define weak_alias(name, aliasname)
# include <sysdeps/i386/mempcpy.S>
.globl __GI_mempcpy
.hidden __GI_mempcpy
__GI_mempcpy = __mempcpy_i386
.globl __GI___mempcpy
.hidden __GI___mempcpy
__GI___mempcpy = __mempcpy_i386
#endif
|