3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-20 22:25:54 +00:00
Brooklyn/arch/nios2/kernel/syscall_table.c

19 lines
390 B
C
Raw Normal View History

2022-04-02 18:08:56 +05:00
// SPDX-License-Identifier: GPL-2.0-only
/*
* Copyright Altera Corporation (C) 2013. All rights reserved
*/
#include <linux/syscalls.h>
#include <linux/signal.h>
#include <linux/unistd.h>
#include <asm/syscalls.h>
#undef __SYSCALL
#define __SYSCALL(nr, call) [nr] = (call),
void *sys_call_table[__NR_syscalls] = {
2022-09-13 23:14:27 +05:00
[0 ... __NR_syscalls-1] = sys_ni_syscall,
2022-04-02 18:08:56 +05:00
#include <asm/unistd.h>
};