diff options
author | Elliott Hughes <enh@google.com> | 2014-06-06 11:44:55 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2014-06-06 15:05:58 -0700 |
commit | 3d5cb30d23cfc6a72f01c00246e69a2c614c8228 (patch) | |
tree | 25e525111f2e2181c6544e96eebc4ce6ec11777e /libc/arch-x86 | |
parent | c3bdc792be78d788663ff9b5e019b4af852dc6f7 (diff) | |
download | bionic-3d5cb30d23cfc6a72f01c00246e69a2c614c8228.zip bionic-3d5cb30d23cfc6a72f01c00246e69a2c614c8228.tar.gz bionic-3d5cb30d23cfc6a72f01c00246e69a2c614c8228.tar.bz2 |
Remove getdents from bionic.
Bug: 11156955
Change-Id: I6c306989801be552d85fba8a50dcdc79282fb9d2
Diffstat (limited to 'libc/arch-x86')
-rw-r--r-- | libc/arch-x86/syscalls/__getdents64.S (renamed from libc/arch-x86/syscalls/getdents.S) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/arch-x86/syscalls/getdents.S b/libc/arch-x86/syscalls/__getdents64.S index 0627532..3fc8719 100644 --- a/libc/arch-x86/syscalls/getdents.S +++ b/libc/arch-x86/syscalls/__getdents64.S @@ -2,7 +2,7 @@ #include <private/bionic_asm.h> -ENTRY(getdents) +ENTRY(__getdents64) pushl %ebx .cfi_def_cfa_offset 8 .cfi_rel_offset ebx, 0 @@ -28,4 +28,4 @@ ENTRY(getdents) popl %ecx popl %ebx ret -END(getdents) +END(__getdents64) |