xref: /openbmc/linux/arch/xtensa/include/asm/unistd.h (revision 23c2b932)
1 #ifndef _XTENSA_UNISTD_H
2 #define _XTENSA_UNISTD_H
3 
4 #define __ARCH_WANT_SYS_CLONE
5 #include <uapi/asm/unistd.h>
6 
7 #define __ARCH_WANT_STAT64
8 #define __ARCH_WANT_SYS_UTIME
9 #define __ARCH_WANT_SYS_LLSEEK
10 #define __ARCH_WANT_SYS_GETPGRP
11 
12 /*
13  * Ignore legacy system calls in the checksyscalls.sh script
14  */
15 
16 #define __IGNORE_fork				/* use clone */
17 #define __IGNORE_time
18 #define __IGNORE_alarm				/* use setitimer */
19 #define __IGNORE_pause
20 #define __IGNORE_mmap				/* use mmap2 */
21 #define __IGNORE_vfork				/* use clone */
22 #define __IGNORE_fadvise64			/* use fadvise64_64 */
23 
24 #endif /* _XTENSA_UNISTD_H */
25