xref: /linux/kernel/kallsyms_internal.h (revision 23b0f90ba871f096474e1c27c3d14f455189d2d9)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 #ifndef LINUX_KALLSYMS_INTERNAL_H_
3 #define LINUX_KALLSYMS_INTERNAL_H_
4 
5 #include <linux/types.h>
6 
7 extern const int kallsyms_offsets[];
8 extern const u8 kallsyms_names[];
9 
10 extern const unsigned int kallsyms_num_syms;
11 
12 extern const char kallsyms_token_table[];
13 extern const u16 kallsyms_token_index[];
14 
15 extern const unsigned int kallsyms_markers[];
16 extern const u8 kallsyms_seqs_of_names[];
17 
18 #endif // LINUX_KALLSYMS_INTERNAL_H_
19