Merge tag 'sched-urgent-2024-03-24' of git://git.kernel.org/pub/scm/linux/kernel...
[sfrench/cifs-2.6.git] / scripts / kconfig / internal.h
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 #ifndef INTERNAL_H
3 #define INTERNAL_H
4
5 #include "hashtable.h"
6
7 #define SYMBOL_HASHSIZE         (1U << 14)
8
9 extern HASHTABLE_DECLARE(sym_hashtable, SYMBOL_HASHSIZE);
10
11 #define for_all_symbols(sym) \
12         hash_for_each(sym_hashtable, sym, node)
13
14 struct menu;
15
16 extern struct menu *current_menu, *current_entry;
17
18 extern const char *cur_filename;
19 extern int cur_lineno;
20
21 #endif /* INTERNAL_H */