Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/tools/include/nolibc/elf.h
26295 views
1
/* SPDX-License-Identifier: LGPL-2.1 OR MIT */
2
/*
3
* Shim elf.h header for NOLIBC.
4
* Copyright (C) 2025 Thomas Weißschuh <[email protected]>
5
*/
6
7
/* make sure to include all global symbols */
8
#include "nolibc.h"
9
10
#ifndef _NOLIBC_SYS_ELF_H
11
#define _NOLIBC_SYS_ELF_H
12
13
#include <linux/elf.h>
14
15
#endif /* _NOLIBC_SYS_ELF_H */
16
17