summaryrefslogtreecommitdiffstats
path: root/libc/arch-mips/syscalls
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-02-18 16:42:36 -0800
committerElliott Hughes <enh@google.com>2014-02-18 16:42:36 -0800
commit986f9067103e41296898a7c0e89f5ed84420fb5b (patch)
tree2c8aff9ef2cd15f628ad735a801a76256d9c0279 /libc/arch-mips/syscalls
parent787c1f937a915feefb767d0c6a15ddb70e6de933 (diff)
downloadbionic-986f9067103e41296898a7c0e89f5ed84420fb5b.zip
bionic-986f9067103e41296898a7c0e89f5ed84420fb5b.tar.gz
bionic-986f9067103e41296898a7c0e89f5ed84420fb5b.tar.bz2
Fix build by avoiding the _C_LABEL macro.
Change-Id: Ide367c2b65071388bd95fbc81a4ed6ae94aec4e4
Diffstat (limited to 'libc/arch-mips/syscalls')
-rw-r--r--libc/arch-mips/syscalls/fstat64.S4
-rw-r--r--libc/arch-mips/syscalls/fstatat64.S4
2 files changed, 4 insertions, 4 deletions
diff --git a/libc/arch-mips/syscalls/fstat64.S b/libc/arch-mips/syscalls/fstat64.S
index de09df5..904ce86 100644
--- a/libc/arch-mips/syscalls/fstat64.S
+++ b/libc/arch-mips/syscalls/fstat64.S
@@ -22,5 +22,5 @@ fstat64:
.set reorder
.end fstat64
- .globl _C_LABEL(fstat)
- .equ _C_LABEL(fstat), _C_LABEL(fstat64)
+ .globl fstat
+ .equ fstat, fstat64
diff --git a/libc/arch-mips/syscalls/fstatat64.S b/libc/arch-mips/syscalls/fstatat64.S
index b177922..8c81a9f 100644
--- a/libc/arch-mips/syscalls/fstatat64.S
+++ b/libc/arch-mips/syscalls/fstatat64.S
@@ -22,5 +22,5 @@ fstatat64:
.set reorder
.end fstatat64
- .globl _C_LABEL(fstatat)
- .equ _C_LABEL(fstatat), _C_LABEL(fstatat64)
+ .globl fstatat
+ .equ fstatat, fstatat64