llseek.c 801 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * llseek/lseek64 syscall for uClibc
  4. *
  5. * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
  6. *
  7. * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
  8. */
  9. #include <unistd.h>
  10. #include <sys/types.h>
  11. #include <sys/syscall.h>
  12. #if defined __NR__llseek && defined __UCLIBC_HAS_LFS__
  13. loff_t lseek64(int fd, loff_t offset, int whence)
  14. {
  15. loff_t result;
  16. return (loff_t)(INLINE_SYSCALL(_llseek, 5, fd, (off_t) (offset >> 32),
  17. (off_t) (offset & 0xffffffff), &result, whence) ?: result);
  18. }
  19. #else
  20. loff_t lseek64(int fd, loff_t offset, int whence)
  21. {
  22. return (loff_t)(lseek(fd, (off_t) (offset), whence));
  23. }
  24. #endif
  25. #ifndef __LINUXTHREADS_OLD__
  26. libc_hidden_def(lseek64)
  27. #else
  28. libc_hidden_weak(lseek64)
  29. strong_alias(lseek64,__libc_lseek64)
  30. #endif