Skip to content

Commit 3b19536

Browse files
committed
Fix compat symbol name for x86 architecture
1 parent b118992 commit 3b19536

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

utils/compat/glibc_version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@
2727
__asm__(".symver log,log@GLIBC_2.0");
2828
__asm__(".symver pow,pow@GLIBC_2.0");
2929
__asm__(".symver exp,exp@GLIBC_2.0");
30-
__asm__(".symver fcntl64,fcntl@GLIBC_2.0");
30+
__asm__(".symver fcntl,fcntl@GLIBC_2.0");
3131
#else
3232
.symver memcmp,memcmp@GLIBC_2.0
3333
.symver memcpy,memcpy@GLIBC_2.0
3434
.symver powf,powf@GLIBC_2.0
3535
.symver log,log@GLIBC_2.0
3636
.symver pow,pow@GLIBC_2.0
3737
.symver exp,exp@GLIBC_2.0
38-
.symver fcntl64,fcntl@GLIBC_2.0
38+
.symver fcntl,fcntl@GLIBC_2.0
3939
#endif
4040

4141
#endif

utils/compat/glibc_version_x86.redef

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ powf powf@GLIBC_2.0
1010
log log@GLIBC_2.0
1111
pow pow@GLIBC_2.0
1212
exp exp@GLIBC_2.0
13-
fcntl64 fcntl@GLIBC_2.0
13+
fcntl fcntl@GLIBC_2.0

0 commit comments

Comments
 (0)