lseek.c 974 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * lseek() 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 <sys/syscall.h>
  10. #include <unistd.h>
  11. #ifdef __NR_lseek
  12. _syscall3(__off_t, lseek, int, fildes, __off_t, offset, int, whence)
  13. #elif defined __UCLIBC_HAS_LFS__ && defined __NR__llseek /* avoid circular dependency */
  14. __off_t lseek(int fildes, __off_t offset, int whence)
  15. {
  16. return lseek64(fildes, offset, whence);
  17. }
  18. #else
  19. # include <errno.h>
  20. __off_t lseek(int fildes, __off_t offset attribute_unused, int whence)
  21. {
  22. if (fildes < 0) {
  23. __set_errno(EBADF);
  24. return -1;
  25. }
  26. switch(whence) {
  27. case SEEK_SET:
  28. case SEEK_CUR:
  29. case SEEK_END:
  30. break;
  31. default:
  32. __set_errno(EINVAL);
  33. return -1;
  34. }
  35. __set_errno(ENOSYS);
  36. return -1;
  37. }
  38. #endif
  39. #ifndef __LINUXTHREADS_OLD__
  40. libc_hidden_def(lseek)
  41. #else
  42. libc_hidden_weak(lseek)
  43. strong_alias(lseek,__libc_lseek)
  44. #endif