/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _LINUX_ELFCORE_COMPAT_H #define _LINUX_ELFCORE_COMPAT_H #include <linux/elf.h> #include <linux/elfcore.h> #include <linux/compat.h> /* * Make sure these layouts match the linux/elfcore.h native definitions. */ struct compat_elf_siginfo { … }; struct compat_elf_prstatus_common { … }; struct compat_elf_prpsinfo { … }; #ifdef CONFIG_ARCH_HAS_ELFCORE_COMPAT #include <asm/elfcore-compat.h> #endif struct compat_elf_prstatus { … }; #endif /* _LINUX_ELFCORE_COMPAT_H */