symbol.c (cdd38c5f1ce4398ec58fec95904b75824daab7b5) | symbol.c (b75b0a819af9f78fc395b189cddd40f590194d20) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org> 4 */ 5 6#include <sys/types.h> 7#include <ctype.h> 8#include <stdlib.h> --- 21 unchanged lines hidden (view full) --- 30}; 31 32static struct symbol symbol_empty = { 33 .name = "", 34 .curr = { "", no }, 35 .flags = SYMBOL_VALID, 36}; 37 | 1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org> 4 */ 5 6#include <sys/types.h> 7#include <ctype.h> 8#include <stdlib.h> --- 21 unchanged lines hidden (view full) --- 30}; 31 32static struct symbol symbol_empty = { 33 .name = "", 34 .curr = { "", no }, 35 .flags = SYMBOL_VALID, 36}; 37 |
38struct symbol *sym_defconfig_list; | |
39struct symbol *modules_sym; 40static tristate modules_val; 41 42enum symbol_type sym_get_type(struct symbol *sym) 43{ 44 enum symbol_type type = sym->type; 45 46 if (type == S_TRISTATE) { --- 1268 unchanged lines hidden --- | 38struct symbol *modules_sym; 39static tristate modules_val; 40 41enum symbol_type sym_get_type(struct symbol *sym) 42{ 43 enum symbol_type type = sym->type; 44 45 if (type == S_TRISTATE) { --- 1268 unchanged lines hidden --- |