Fix build by avoiding the _C_LABEL macro.

Change-Id: Ide367c2b65071388bd95fbc81a4ed6ae94aec4e4
diff --git a/libc/arch-mips64/syscalls/fallocate.S b/libc/arch-mips64/syscalls/fallocate.S
index dea8d27..347ab1f 100644
--- a/libc/arch-mips64/syscalls/fallocate.S
+++ b/libc/arch-mips64/syscalls/fallocate.S
@@ -30,5 +30,5 @@
     .set pop
     .end fallocate
 
-    .globl _C_LABEL(fallocate64)
-    .equ _C_LABEL(fallocate64), _C_LABEL(fallocate)
+    .globl fallocate64
+    .equ fallocate64, fallocate
diff --git a/libc/arch-mips64/syscalls/fstat64.S b/libc/arch-mips64/syscalls/fstat64.S
index 413d03b..aad3c21 100644
--- a/libc/arch-mips64/syscalls/fstat64.S
+++ b/libc/arch-mips64/syscalls/fstat64.S
@@ -30,5 +30,5 @@
     .set pop
     .end fstat64
 
-    .globl _C_LABEL(fstat)
-    .equ _C_LABEL(fstat), _C_LABEL(fstat64)
+    .globl fstat
+    .equ fstat, fstat64
diff --git a/libc/arch-mips64/syscalls/fstatat64.S b/libc/arch-mips64/syscalls/fstatat64.S
index df00901..828439a 100644
--- a/libc/arch-mips64/syscalls/fstatat64.S
+++ b/libc/arch-mips64/syscalls/fstatat64.S
@@ -30,5 +30,5 @@
     .set pop
     .end fstatat64
 
-    .globl _C_LABEL(fstatat)
-    .equ _C_LABEL(fstatat), _C_LABEL(fstatat64)
+    .globl fstatat
+    .equ fstatat, fstatat64
diff --git a/libc/arch-mips64/syscalls/fstatfs64.S b/libc/arch-mips64/syscalls/fstatfs64.S
index 2276299..09380b2 100644
--- a/libc/arch-mips64/syscalls/fstatfs64.S
+++ b/libc/arch-mips64/syscalls/fstatfs64.S
@@ -30,5 +30,5 @@
     .set pop
     .end fstatfs64
 
-    .globl _C_LABEL(fstatfs)
-    .equ _C_LABEL(fstatfs), _C_LABEL(fstatfs64)
+    .globl fstatfs
+    .equ fstatfs, fstatfs64
diff --git a/libc/arch-mips64/syscalls/ftruncate.S b/libc/arch-mips64/syscalls/ftruncate.S
index 507825d..3afe26a 100644
--- a/libc/arch-mips64/syscalls/ftruncate.S
+++ b/libc/arch-mips64/syscalls/ftruncate.S
@@ -30,5 +30,5 @@
     .set pop
     .end ftruncate
 
-    .globl _C_LABEL(ftruncate64)
-    .equ _C_LABEL(ftruncate64), _C_LABEL(ftruncate)
+    .globl ftruncate64
+    .equ ftruncate64, ftruncate
diff --git a/libc/arch-mips64/syscalls/getrlimit.S b/libc/arch-mips64/syscalls/getrlimit.S
index b944426..d19eaeb 100644
--- a/libc/arch-mips64/syscalls/getrlimit.S
+++ b/libc/arch-mips64/syscalls/getrlimit.S
@@ -30,5 +30,5 @@
     .set pop
     .end getrlimit
 
-    .globl _C_LABEL(getrlimit64)
-    .equ _C_LABEL(getrlimit64), _C_LABEL(getrlimit)
+    .globl getrlimit64
+    .equ getrlimit64, getrlimit
diff --git a/libc/arch-mips64/syscalls/lseek.S b/libc/arch-mips64/syscalls/lseek.S
index 79c8dec..4385df5 100644
--- a/libc/arch-mips64/syscalls/lseek.S
+++ b/libc/arch-mips64/syscalls/lseek.S
@@ -30,5 +30,5 @@
     .set pop
     .end lseek
 
-    .globl _C_LABEL(lseek64)
-    .equ _C_LABEL(lseek64), _C_LABEL(lseek)
+    .globl lseek64
+    .equ lseek64, lseek
diff --git a/libc/arch-mips64/syscalls/mmap.S b/libc/arch-mips64/syscalls/mmap.S
index 1cde691..682058e 100644
--- a/libc/arch-mips64/syscalls/mmap.S
+++ b/libc/arch-mips64/syscalls/mmap.S
@@ -30,5 +30,5 @@
     .set pop
     .end mmap
 
-    .globl _C_LABEL(mmap64)
-    .equ _C_LABEL(mmap64), _C_LABEL(mmap)
+    .globl mmap64
+    .equ mmap64, mmap
diff --git a/libc/arch-mips64/syscalls/pread64.S b/libc/arch-mips64/syscalls/pread64.S
index b752147..a97a1d4 100644
--- a/libc/arch-mips64/syscalls/pread64.S
+++ b/libc/arch-mips64/syscalls/pread64.S
@@ -30,5 +30,5 @@
     .set pop
     .end pread64
 
-    .globl _C_LABEL(pread)
-    .equ _C_LABEL(pread), _C_LABEL(pread64)
+    .globl pread
+    .equ pread, pread64
diff --git a/libc/arch-mips64/syscalls/prlimit64.S b/libc/arch-mips64/syscalls/prlimit64.S
index dea308f..e611bd0 100644
--- a/libc/arch-mips64/syscalls/prlimit64.S
+++ b/libc/arch-mips64/syscalls/prlimit64.S
@@ -30,5 +30,5 @@
     .set pop
     .end prlimit64
 
-    .globl _C_LABEL(prlimit)
-    .equ _C_LABEL(prlimit), _C_LABEL(prlimit64)
+    .globl prlimit
+    .equ prlimit, prlimit64
diff --git a/libc/arch-mips64/syscalls/pwrite64.S b/libc/arch-mips64/syscalls/pwrite64.S
index b168ddf..08af91b 100644
--- a/libc/arch-mips64/syscalls/pwrite64.S
+++ b/libc/arch-mips64/syscalls/pwrite64.S
@@ -30,5 +30,5 @@
     .set pop
     .end pwrite64
 
-    .globl _C_LABEL(pwrite)
-    .equ _C_LABEL(pwrite), _C_LABEL(pwrite64)
+    .globl pwrite
+    .equ pwrite, pwrite64
diff --git a/libc/arch-mips64/syscalls/sendfile.S b/libc/arch-mips64/syscalls/sendfile.S
index 1876239..bce8d58 100644
--- a/libc/arch-mips64/syscalls/sendfile.S
+++ b/libc/arch-mips64/syscalls/sendfile.S
@@ -30,5 +30,5 @@
     .set pop
     .end sendfile
 
-    .globl _C_LABEL(sendfile64)
-    .equ _C_LABEL(sendfile64), _C_LABEL(sendfile)
+    .globl sendfile64
+    .equ sendfile64, sendfile
diff --git a/libc/arch-mips64/syscalls/setrlimit.S b/libc/arch-mips64/syscalls/setrlimit.S
index e512c1d..9ed0024 100644
--- a/libc/arch-mips64/syscalls/setrlimit.S
+++ b/libc/arch-mips64/syscalls/setrlimit.S
@@ -30,5 +30,5 @@
     .set pop
     .end setrlimit
 
-    .globl _C_LABEL(setrlimit64)
-    .equ _C_LABEL(setrlimit64), _C_LABEL(setrlimit)
+    .globl setrlimit64
+    .equ setrlimit64, setrlimit
diff --git a/libc/arch-mips64/syscalls/statfs64.S b/libc/arch-mips64/syscalls/statfs64.S
index 2fd7603..accd715 100644
--- a/libc/arch-mips64/syscalls/statfs64.S
+++ b/libc/arch-mips64/syscalls/statfs64.S
@@ -30,5 +30,5 @@
     .set pop
     .end statfs64
 
-    .globl _C_LABEL(statfs)
-    .equ _C_LABEL(statfs), _C_LABEL(statfs64)
+    .globl statfs
+    .equ statfs, statfs64
diff --git a/libc/arch-mips64/syscalls/truncate.S b/libc/arch-mips64/syscalls/truncate.S
index b68f35c..a79cdcd 100644
--- a/libc/arch-mips64/syscalls/truncate.S
+++ b/libc/arch-mips64/syscalls/truncate.S
@@ -30,5 +30,5 @@
     .set pop
     .end truncate
 
-    .globl _C_LABEL(truncate64)
-    .equ _C_LABEL(truncate64), _C_LABEL(truncate)
+    .globl truncate64
+    .equ truncate64, truncate