__syscall_fcntl64.c 663 B

123456789101112131415161718192021222324252627282930
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * __syscall_fcntl64() 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 <stdarg.h>
  11. #include <fcntl.h>
  12. #if defined __UCLIBC_HAS_LFS__ && defined __NR_fcntl64
  13. #define __NR___syscall_fcntl64 __NR_fcntl64
  14. static __inline__ _syscall3(int, __syscall_fcntl64, int, fd, int, cmd, long, arg)
  15. int fcntl64(int fd, int cmd, ...)
  16. {
  17. long arg;
  18. va_list list;
  19. va_start(list, cmd);
  20. arg = va_arg(list, long);
  21. va_end(list);
  22. return (__syscall_fcntl64(fd, cmd, arg));
  23. }
  24. libc_hidden_def(fcntl64)
  25. #endif