lkc.h (1da177e4c3f41524e886b7f1b8a0c1fc7321cac2) | lkc.h (3b9fa0931dd86a1fe5507311ee8031650f5d0e8c) |
---|---|
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#ifndef LKC_H 7#define LKC_H 8 9#include "expr.h" 10 | 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#ifndef LKC_H 7#define LKC_H 8 9#include "expr.h" 10 |
11#include <libintl.h> 12 |
|
11#ifdef __cplusplus 12extern "C" { 13#endif 14 15#ifdef LKC_DIRECT_LINK 16#define P(name,type,arg) extern type name arg 17#else 18#include "lkc_defs.h" 19#define P(name,type,arg) extern type (*name ## _p) arg 20#endif 21#include "lkc_proto.h" 22#undef P 23 24#define SRCTREE "srctree" 25 | 13#ifdef __cplusplus 14extern "C" { 15#endif 16 17#ifdef LKC_DIRECT_LINK 18#define P(name,type,arg) extern type name arg 19#else 20#include "lkc_defs.h" 21#define P(name,type,arg) extern type (*name ## _p) arg 22#endif 23#include "lkc_proto.h" 24#undef P 25 26#define SRCTREE "srctree" 27 |
28#define PACKAGE "linux" 29#define LOCALEDIR "/usr/share/locale" 30 31#define _(text) gettext(text) 32#define N_(text) (text) 33 |
|
26int zconfparse(void); 27void zconfdump(FILE *out); 28 29extern int zconfdebug; 30void zconf_starthelp(void); 31FILE *zconf_fopen(const char *name); 32void zconf_initscan(const char *name); 33void zconf_nextfile(const char *name); --- 90 unchanged lines hidden --- | 34int zconfparse(void); 35void zconfdump(FILE *out); 36 37extern int zconfdebug; 38void zconf_starthelp(void); 39FILE *zconf_fopen(const char *name); 40void zconf_initscan(const char *name); 41void zconf_nextfile(const char *name); --- 90 unchanged lines hidden --- |