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