mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-01 15:14:52 +00:00

The BTI test program started life as standalone programs outside the kselftest suite so provided it's own compiler.h. Now that we have updated the tools/include compiler.h to have all the definitions that we are using and the arm64 selftsets pull in tools/includes let's drop our custom version. __unreachable() is named unreachable() there requiring an update in the code. Signed-off-by: Mark Brown <broonie@kernel.org> Link: https://lore.kernel.org/r/20230728-arm64-signal-memcpy-fix-v4-6-0c1290db5d46@kernel.org Signed-off-by: Will Deacon <will@kernel.org>
29 lines
551 B
C
29 lines
551 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2019 Arm Limited
|
|
* Original author: Dave Martin <Dave.Martin@arm.com>
|
|
*/
|
|
|
|
#ifndef SYSTEM_H
|
|
#define SYSTEM_H
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/stddef.h>
|
|
|
|
typedef __kernel_size_t size_t;
|
|
typedef __kernel_ssize_t ssize_t;
|
|
|
|
#include <linux/errno.h>
|
|
#include <linux/compiler.h>
|
|
|
|
#include <asm/hwcap.h>
|
|
#include <asm/ptrace.h>
|
|
#include <asm/unistd.h>
|
|
|
|
long syscall(int nr, ...);
|
|
|
|
void __noreturn exit(int n);
|
|
ssize_t write(int fd, const void *buf, size_t size);
|
|
|
|
#endif /* ! SYSTEM_H */
|