/* SPDX-License-Identifier: GPL-2.0-or-later */1/*2* OpenRISC Linux3*4* Linux architectural port borrowing liberally from similar works of5* others. All original copyrights apply as per the original source6* declaration.7*8* OpenRISC implementation:9* Copyright (C) 2003 Matjaz Breskvar <[email protected]>10* Copyright (C) 2010-2011 Jonas Bonn <[email protected]>11* et al.12*/1314#ifndef __ASM_OPENRISC_SYSCALLS_H15#define __ASM_OPENRISC_SYSCALLS_H1617asmlinkage long sys_or1k_atomic(unsigned long type, unsigned long *v1,18unsigned long *v2);1920#include <asm-generic/syscalls.h>2122asmlinkage long __sys_clone(unsigned long clone_flags, unsigned long newsp,23void __user *parent_tid, void __user *child_tid, int tls);24asmlinkage long __sys_clone3(struct clone_args __user *uargs, size_t size);25asmlinkage long __sys_fork(void);2627#endif /* __ASM_OPENRISC_SYSCALLS_H */282930