Add missing aliases for off64_t functions in 64-bit land.

See the comment in SYSCALLS.TXT for an explanation.

Change-Id: I33d4056e84160c3cca74b7b588e9924a569753ed
This commit is contained in:
Elliott Hughes
2013-10-17 16:56:40 -07:00
parent 5b19160437
commit a6519d6306
4 changed files with 27 additions and 10 deletions

View File

@@ -16,3 +16,6 @@ ENTRY(ftruncate)
1:
ret
END(ftruncate)
.globl _C_LABEL(ftruncate64)
.equ _C_LABEL(ftruncate64), _C_LABEL(ftruncate)

View File

@@ -17,3 +17,6 @@ ENTRY(sendfile)
1:
ret
END(sendfile)
.globl _C_LABEL(sendfile64)
.equ _C_LABEL(sendfile64), _C_LABEL(sendfile)

View File

@@ -16,3 +16,6 @@ ENTRY(truncate)
1:
ret
END(truncate)
.globl _C_LABEL(truncate64)
.equ _C_LABEL(truncate64), _C_LABEL(truncate)