2018-03-02 13:31:11 +01:00
|
|
|
/*
|
|
|
|
* Syscall numbers from asm-generic, common for most
|
|
|
|
* of recently-added arches including RISC-V.
|
|
|
|
*/
|
|
|
|
|
2019-06-04 20:16:18 +02:00
|
|
|
#ifndef LINUX_USER_RISCV_SYSCALL_NR_H
|
|
|
|
#define LINUX_USER_RISCV_SYSCALL_NR_H
|
|
|
|
|
2018-03-02 13:31:11 +01:00
|
|
|
#ifdef TARGET_RISCV32
|
2020-03-12 23:14:00 +01:00
|
|
|
# include "syscall32_nr.h"
|
2018-03-02 13:31:11 +01:00
|
|
|
#else
|
2020-03-12 23:14:00 +01:00
|
|
|
# include "syscall64_nr.h"
|
2018-03-02 13:31:11 +01:00
|
|
|
#endif
|
2019-06-04 20:16:18 +02:00
|
|
|
|
|
|
|
#endif
|