summaryrefslogtreecommitdiffstats
path: root/libc/arch-mips/syscalls
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2014-06-06 11:44:55 -0700
committerElliott Hughes <enh@google.com>2014-06-06 15:05:58 -0700
commit3d5cb30d23cfc6a72f01c00246e69a2c614c8228 (patch)
tree25e525111f2e2181c6544e96eebc4ce6ec11777e /libc/arch-mips/syscalls
parentc3bdc792be78d788663ff9b5e019b4af852dc6f7 (diff)
downloadbionic-3d5cb30d23cfc6a72f01c00246e69a2c614c8228.zip
bionic-3d5cb30d23cfc6a72f01c00246e69a2c614c8228.tar.gz
bionic-3d5cb30d23cfc6a72f01c00246e69a2c614c8228.tar.bz2
Remove getdents from bionic.
Bug: 11156955 Change-Id: I6c306989801be552d85fba8a50dcdc79282fb9d2
Diffstat (limited to 'libc/arch-mips/syscalls')
-rw-r--r--libc/arch-mips/syscalls/__getdents64.S (renamed from libc/arch-mips/syscalls/getdents.S)4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/arch-mips/syscalls/getdents.S b/libc/arch-mips/syscalls/__getdents64.S
index ce92886..136b408 100644
--- a/libc/arch-mips/syscalls/getdents.S
+++ b/libc/arch-mips/syscalls/__getdents64.S
@@ -2,7 +2,7 @@
#include <private/bionic_asm.h>
-ENTRY(getdents)
+ENTRY(__getdents64)
.set noreorder
.cpload t9
li v0, __NR_getdents64
@@ -16,4 +16,4 @@ ENTRY(getdents)
j t9
nop
.set reorder
-END(getdents)
+END(__getdents64)