syscall_nr.h 281 B

123456789101112131415
  1. /*
  2. * Syscall numbers from asm-generic, common for most
  3. * of recently-added arches including RISC-V.
  4. */
  5. #ifndef LINUX_USER_RISCV_SYSCALL_NR_H
  6. #define LINUX_USER_RISCV_SYSCALL_NR_H
  7. #ifdef TARGET_RISCV32
  8. # include "syscall32_nr.h"
  9. #else
  10. # include "syscall64_nr.h"
  11. #endif
  12. #endif