historical/m0-applesillicon.git/xnu-qemu-arm64-5.1.0/linux-user/riscv/syscall_nr.h
2024-01-16 11:20:27 -06:00

15 lines
281 B
C

/*
* Syscall numbers from asm-generic, common for most
* of recently-added arches including RISC-V.
*/
#ifndef LINUX_USER_RISCV_SYSCALL_NR_H
#define LINUX_USER_RISCV_SYSCALL_NR_H
#ifdef TARGET_RISCV32
# include "syscall32_nr.h"
#else
# include "syscall64_nr.h"
#endif
#endif