summaryrefslogtreecommitdiffstats
path: root/arch/sandbox/include/asm/elf.h
blob: f08d5930c66d2e427758b8d0b999f1134369d585 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef __ASM_SANDBOX_ELF_H__
#define __ASM_SANDBOX_ELF_H__

#if __SIZEOF_POINTER__ == 8
#define ELF_CLASS	ELFCLASS64
#else
#define ELF_CLASS	ELFCLASS32
#endif

#endif /* __ASM_SANDBOX_ELF_H__ */