mirror of
https://github.com/armbian/linux.git
synced 2026-01-06 10:13:00 -08:00
13 lines
236 B
C
13 lines
236 B
C
#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] = {
|
|
#include <asm/unistd.h>
|
|
};
|