symbol.c (020abf03cd659388f94cb328e1e1df0656e0d7ff) | symbol.c (5a6f8d2bd9e3392569ed6f29ea4d7210652f929b) |
---|---|
1/* 2 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org> 3 * Released under the terms of the GNU GPL v2.0. 4 */ 5 6#include <ctype.h> 7#include <stdlib.h> 8#include <string.h> 9#include <regex.h> 10#include <sys/utsname.h> 11 | 1/* 2 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org> 3 * Released under the terms of the GNU GPL v2.0. 4 */ 5 6#include <ctype.h> 7#include <stdlib.h> 8#include <string.h> 9#include <regex.h> 10#include <sys/utsname.h> 11 |
12#define LKC_DIRECT_LINK | |
13#include "lkc.h" 14 15struct symbol symbol_yes = { 16 .name = "y", 17 .curr = { "y", yes }, 18 .flags = SYMBOL_CONST|SYMBOL_VALID, 19}, symbol_mod = { 20 .name = "m", --- 1240 unchanged lines hidden --- | 12#include "lkc.h" 13 14struct symbol symbol_yes = { 15 .name = "y", 16 .curr = { "y", yes }, 17 .flags = SYMBOL_CONST|SYMBOL_VALID, 18}, symbol_mod = { 19 .name = "m", --- 1240 unchanged lines hidden --- |