blob: 29332945d83e71d3df1158468232a1fe89b301bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* INTERN.h
*
* Copyright (C) 1993, 1994, by Larry Wall and others
*
* You may distribute under the terms of either the GNU General Public
* License or the Artistic License, as specified in the README file.
*/
#undef EXT
#define EXT
#ifdef __cplusplus
# define EXTERN_C extern "C"
#else
# ifndef EXTERN_C
# define EXTERN_C
# endif
#endif
#undef INIT
#define INIT(x) = x
#define DOINIT
|