lkc.h (020abf03cd659388f94cb328e1e1df0656e0d7ff) lkc.h (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#ifndef LKC_H
7#define LKC_H
8

--- 7 unchanged lines hidden (view full) ---

16static inline void bindtextdomain(const char *name, const char *dir) {}
17static inline char *bind_textdomain_codeset(const char *dn, char *c) { return c; }
18#endif
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
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

--- 7 unchanged lines hidden (view full) ---

16static inline void bindtextdomain(const char *name, const char *dir) {}
17static inline char *bind_textdomain_codeset(const char *dn, char *c) { return c; }
18#endif
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
24#ifdef LKC_DIRECT_LINK
25#define P(name,type,arg) extern type name arg
24#define P(name,type,arg) extern type name arg
26#else
27#include "lkc_defs.h"
28#define P(name,type,arg) extern type (*name ## _p) arg
29#endif
30#include "lkc_proto.h"
31#undef P
32
33#define SRCTREE "srctree"
34
35#ifndef PACKAGE
36#define PACKAGE "linux"
37#endif

--- 159 unchanged lines hidden ---
25#include "lkc_proto.h"
26#undef P
27
28#define SRCTREE "srctree"
29
30#ifndef PACKAGE
31#define PACKAGE "linux"
32#endif

--- 159 unchanged lines hidden ---