Example #1
0
int
attribute_compat_text_section
__posix_fadvise64_l32 (int fd, off64_t offset, size_t len, int advise)
{
    return __posix_fadvise64_l64 (fd, offset, len, advise);
}
int
posix_fadvise (int fd, off_t offset, off_t len, int advise)
{
  /* ARM only has a syscall for fadvise64_64.  */
  return __posix_fadvise64_l64 (fd, offset, len, advise);
}