/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */1/*2* This file is subject to the terms and conditions of the GNU General Public3* License. See the file "COPYING" in the main directory of this archive4* for more details.5*6* Copyright (C) 1995, 96, 97, 98, 99, 2000 by Ralf Baechle7* Copyright (C) 1999, 2000 Silicon Graphics, Inc.8*9* Changed system calls macros _syscall5 - _syscall7 to push args 5 to 7 onto10* the stack. Robin Farine for ACN S.A, Copyright (C) 1996 by ACN S.A11*/12#ifndef _UAPI_ASM_UNISTD_H13#define _UAPI_ASM_UNISTD_H1415#include <asm/sgidefs.h>1617#if _MIPS_SIM == _MIPS_SIM_ABI321819#define __NR_Linux 400020#include <asm/unistd_o32.h>2122#endif /* _MIPS_SIM == _MIPS_SIM_ABI32 */2324#if _MIPS_SIM == _MIPS_SIM_ABI642526#define __NR_Linux 500027#include <asm/unistd_n64.h>2829#endif /* _MIPS_SIM == _MIPS_SIM_ABI64 */3031#if _MIPS_SIM == _MIPS_SIM_NABI323233#define __NR_Linux 600034#include <asm/unistd_n32.h>3536#endif /* _MIPS_SIM == _MIPS_SIM_NABI32 */3738#endif /* _UAPI_ASM_UNISTD_H */394041