mips64.patch 689 B

12345678910111213141516171819202122
  1. diff -Nur uClibc-0.9.30.2.orig/libc/sysdeps/linux/common/getdents.c uClibc-0.9.30.2/libc/sysdeps/linux/common/getdents.c
  2. --- uClibc-0.9.30.2.orig/libc/sysdeps/linux/common/getdents.c 2010-01-13 22:22:31.000000000 +0100
  3. +++ uClibc-0.9.30.2/libc/sysdeps/linux/common/getdents.c 2010-02-03 20:21:34.000000000 +0100
  4. @@ -136,9 +136,6 @@
  5. return (char *) dp - buf;
  6. }
  7. -#if defined __UCLIBC_HAS_LFS__ && ! defined __NR_getdents64
  8. -attribute_hidden strong_alias(__getdents,__getdents64)
  9. -#endif
  10. #elif __WORDSIZE == 32
  11. @@ -171,4 +168,8 @@
  12. }
  13. #endif
  14. +#if defined __UCLIBC_HAS_LFS__ && ! defined __NR_getdents64
  15. +attribute_hidden strong_alias(__getdents,__getdents64)
  16. +#endif
  17. +
  18. #endif