Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/sh/kernel/syscalls_32.S
26439 views
1
/* SPDX-License-Identifier: GPL-2.0
2
*
3
* arch/sh/kernel/syscalls.S
4
*
5
* System call table for SuperH
6
*
7
* Copyright (C) 1999, 2000, 2002 Niibe Yutaka
8
* Copyright (C) 2003 Paul Mundt
9
*/
10
#include <linux/sys.h>
11
#include <linux/linkage.h>
12
13
#define __SYSCALL(nr, entry) .long entry
14
.data
15
ENTRY(sys_call_table)
16
#include <asm/syscall_table.h>
17
#undef __SYSCALL
18
19