diff options
Diffstat (limited to 'libc/arch-mips64')
-rw-r--r-- | libc/arch-mips64/syscalls/___fchmod.S (renamed from libc/arch-mips64/syscalls/__fchmod.S) | 6 | ||||
-rw-r--r-- | libc/arch-mips64/syscalls/___fchmodat.S (renamed from libc/arch-mips64/syscalls/__fchmodat.S) | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/libc/arch-mips64/syscalls/__fchmod.S b/libc/arch-mips64/syscalls/___fchmod.S index 94dd0a1..7c16c54 100644 --- a/libc/arch-mips64/syscalls/__fchmod.S +++ b/libc/arch-mips64/syscalls/___fchmod.S @@ -2,7 +2,7 @@ #include <private/bionic_asm.h> -ENTRY(__fchmod) +ENTRY(___fchmod) .set push .set noreorder li v0, __NR_fchmod @@ -22,5 +22,5 @@ ENTRY(__fchmod) j t9 move ra, t0 .set pop -END(__fchmod) -.hidden __fchmod +END(___fchmod) +.hidden ___fchmod diff --git a/libc/arch-mips64/syscalls/__fchmodat.S b/libc/arch-mips64/syscalls/___fchmodat.S index 79f453f..50f108e 100644 --- a/libc/arch-mips64/syscalls/__fchmodat.S +++ b/libc/arch-mips64/syscalls/___fchmodat.S @@ -2,7 +2,7 @@ #include <private/bionic_asm.h> -ENTRY(__fchmodat) +ENTRY(___fchmodat) .set push .set noreorder li v0, __NR_fchmodat @@ -22,5 +22,5 @@ ENTRY(__fchmodat) j t9 move ra, t0 .set pop -END(__fchmodat) -.hidden __fchmodat +END(___fchmodat) +.hidden ___fchmodat |