unistd.h 600 B

12345678910111213141516171819202122232425
  1. #ifndef _XTENSA_UNISTD_H
  2. #define _XTENSA_UNISTD_H
  3. #define __ARCH_WANT_SYS_CLONE
  4. #include <uapi/asm/unistd.h>
  5. #define __ARCH_WANT_STAT64
  6. #define __ARCH_WANT_SYS_UTIME
  7. #define __ARCH_WANT_SYS_LLSEEK
  8. #define __ARCH_WANT_SYS_GETPGRP
  9. /*
  10. * Ignore legacy system calls in the checksyscalls.sh script
  11. */
  12. #define __IGNORE_fork /* use clone */
  13. #define __IGNORE_time
  14. #define __IGNORE_alarm /* use setitimer */
  15. #define __IGNORE_pause
  16. #define __IGNORE_mmap /* use mmap2 */
  17. #define __IGNORE_vfork /* use clone */
  18. #define __IGNORE_fadvise64 /* use fadvise64_64 */
  19. #endif /* _XTENSA_UNISTD_H */