1d7c4f10ba
Now zconf_curname() and zconf_lineno() are so simple that they just return cur_filename, cur_lineno, respectively. Remove these functions, and then use cur_filename and cur_lineno directly. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
13 lines
229 B
C
13 lines
229 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
#ifndef INTERNAL_H
|
|
#define INTERNAL_H
|
|
|
|
struct menu;
|
|
|
|
extern struct menu *current_menu, *current_entry;
|
|
|
|
extern const char *cur_filename;
|
|
extern int cur_lineno;
|
|
|
|
#endif /* INTERNAL_H */
|