1
  
2
  
3
  
4
  
5
  
6
  
7
  
8
  
9
  
10
  
11
  
12
  
13
  
14
  
15
  
16
  
17
  
18
  
19
  
20
  
21
  
22
  
23
  
24
  
25
  
26
  
27
  
28
  
29
  
30
  
31
  
32
  
33
  
34
  
35
  
36
  
37
  
38
  
39
  
40
  
41
  
42
  
43
  
44
  
45
  
46
  
47
  
48
  
49
  
50
  
51
  
52
  
53
  
54
  
55
  
56
  
57
  
58
  
59
  
60
  
61
  
62
  
63
  
64
  
65
  
66
  
67
  
68
  
69
  
70
  
71
  
72
  
73
  
74
  
75
  
76
  
77
  
78
  
79
  
80
  
81
  
82
  
83
  
84
  
85
  
86
  
87
  
88
  
89
  
90
  
91
  
92
  
93
  
94
  
95
  
96
  
97
  
98
  
99
  
100
  
101
  
102
  
103
  
104
  
105
  
106
  
107
  
108
  
109
  
110
  
111
  
112
  
113
  
114
  
115
  
116
  
117
  
118
  
119
  
120
  
121
  
122
  
123
  
124
  
125
  
126
  
127
  
128
  
129
  
130
  
131
  
132
  
133
  
134
  
135
  
136
  
137
  
138
  
139
  
140
  
141
  
142
  
143
  
144
  
145
  
146
  
147
  
148
  
149
  
150
  
151
  
152
  
153
  
154
  
155
  
156
  
157
  
158
  
159
  
160
  
161
  
162
  
163
  
164
  
165
  
166
  
167
  
168
  
169
  
170
  
171
  
172
  
173
  
174
  
175
  
176
  
177
  
178
  
179
  
180
  
181
  
182
  
183
  
184
  
185
  
186
  
187
  
188
  
189
  
190
  
191
  
192
  
193
  
194
  
195
  
196
  
197
  
198
  
199
  
200
  
201
  
202
  
203
  
204
  
205
  
206
  
207
  
208
  
209
  
210
  
211
  
212
  
213
  
214
  
215
  
216
  
217
  
218
  
219
  
220
  
221
  
222
  
223
  
224
  
225
  
226
  
227
  
228
  
229
  
230
  
231
  
232
  
233
  
234
  
/*\ 
||| This file a part of Pike, and is copyright by Fredrik Hubinette 
||| Pike is distributed as GPL (General Public License) 
||| See the files COPYING and DISCLAIMER for more information. 
\*/ 
#ifndef GLOBAL_H 
#define GLOBAL_H 
 
#ifndef _LARGEFILE_SOURCE 
#  define _FILE_OFFSET_BITS 64 
#  define _LARGEFILE_SOURCE 
#endif 
 
/* 
 * Some structure forward declarations are needed. 
 */ 
 
/* This is needed for linux */ 
#ifdef MALLOC_REPLACED 
#define NO_FIX_MALLOC 
#endif 
 
#ifndef STRUCT_PROGRAM_DECLARED 
#define STRUCT_PROGRAM_DECLARED 
struct program; 
#endif 
 
struct function; 
#ifndef STRUCT_SVALUE_DECLARED 
#define STRUCT_SVALUE_DECLARED 
struct svalue; 
#endif 
struct sockaddr; 
struct object; 
struct array; 
struct svalue; 
 
#include "machine.h" 
 
/* 
 * Max number of local variables in a function. 
 * Currently there is no support for more than 256 
 */ 
#define MAX_LOCAL     256 
 
/* 
 * define NO_GC to get rid of garbage collection 
 */ 
#ifndef NO_GC 
#define GC2 
#endif 
 
#if defined(i386) 
#ifndef HANDLES_UNALIGNED_MEMORY_ACCESS 
#define HANDLES_UNALIGNED_MEMORY_ACCESS 
#endif 
#endif 
 
/* AIX requires this to be the first thing in the file.  */ 
#ifdef __GNUC__ 
# ifdef alloca 
#  undef alloca 
# endif 
# define alloca __builtin_alloca 
#else 
# if HAVE_ALLOCA_H 
#  include <alloca.h> 
# else 
#  ifdef _AIX 
 #pragma alloca 
#  else 
#   ifndef alloca /* predefined by HP cc +Olibcalls */ 
char *alloca (); 
#   endif 
#  endif 
# endif 
#endif 
 
#include <stdio.h> 
 
#ifdef HAVE_STDLIB_H 
#include <stdlib.h> 
#undef HAVE_STDLIB_H 
#endif 
 
#ifdef HAVE_MALLOC_H 
#include <malloc.h> 
#undef HAVE_MALLOC_H 
#endif 
 
#ifdef HAVE_UNISTD_H 
#include <unistd.h> 
#undef HAVE_UNISTD_H 
#endif 
 
#ifdef HAVE_STRING_H 
#include <string.h> 
#undef HAVE_STRING_H 
#endif 
 
#ifdef HAVE_LIMITS_H 
#include <limits.h> 
#undef HAVE_LIMITS_H 
#endif 
 
#ifdef HAVE_SYS_TYPES_H 
#include <sys/types.h> 
#undef HAVE_SYS_TYPES_H 
#endif 
 
#ifdef HAVE_MEMORY_H 
#include <memory.h> 
#undef HAVE_MEMORY_H 
#endif 
 
 
/* we here define a few types with more defined values */ 
 
#define INT64 long long 
 
#if SIZEOF_SHORT >= 4 
#define INT32 short 
#else 
#if SIZEOF_INT >= 4 
#define INT32 int 
#else 
#define INT32 long 
#endif 
#endif 
 
#define INT16 short 
#define INT8 char 
 
#define SIZE_T unsigned INT32 
 
#define TYPE_T unsigned INT8 
#define TYPE_FIELD unsigned INT16 
 
#define FLOAT_TYPE float 
#define INT_TYPE INT32 
 
#define B1_T char 
 
#if SIZEOF_SHORT == 2 
#define B2_T short 
#elif SIZEOF_INT == 2 
#define B2_T int 
#endif 
 
#if SIZEOF_SHORT == 4 
#define B4_T short 
#elif SIZEOF_INT == 4 
#define B4_T int 
#elif SIZEOF_LONG == 4 
#define B4_T long 
#endif 
 
#if SIZEOF_INT == 8 
#define B8_T int 
#elif SIZEOF_LONG == 8 
#define B8_T long 
#elif SIZEOF_CHAR_P == 8 
#define B8_T char * 
#elif defined(B4_T) 
struct b8_t_s { B4_T x,y; }; 
#define B8_T struct b8_t_s 
#endif 
 
#if defined(B8_T) 
struct b16_t_s { B8_T x,y; }; 
#define B16_T struct b16_t_s 
#endif 
 
 
#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7) 
#define RCSID(X) \ 
 static char *rcsid __attribute__ ((unused)) =X 
#elif __GNUC__ == 2 
#define RCSID(X) \ 
 static char *rcsid = X; \ 
 static void *use_rcsid=(&use_rcsid, (void *)&rcsid) 
#else 
#define RCSID(X) \ 
 static char *rcsid = X 
#endif 
 
#if defined(__GNUC__) && !defined(DEBUG) && !defined(lint) 
#define INLINE inline 
#else 
#define INLINE 
#endif 
 
#include "port.h" 
#include "dmalloc.h" 
 
 
#ifdef BUFSIZ 
#define PROT_STDIO(x) PROT(x) 
#else 
#define PROT_STDIO(x) () 
#endif 
 
#ifdef __STDC__ 
#define PROT(x) x 
#else 
#define PROT(x) () 
#endif 
 
#ifdef MALLOC_DECL_MISSING 
char *malloc PROT((int)); 
char *realloc PROT((char *,int)); 
void free PROT((char *)); 
char *calloc PROT((int,int)); 
#endif 
 
#ifdef GETPEERNAME_DECL_MISSING 
int getpeername PROT((int, struct sockaddr *, int *)); 
#endif 
 
#ifdef GETHOSTNAME_DECL_MISSING 
void gethostname PROT((char *,int)); 
#endif 
 
#ifdef POPEN_DECL_MISSING 
FILE *popen PROT((char *,char *)); 
#endif 
 
#ifdef GETENV_DECL_MISSING 
char *getenv PROT((char *)); 
#endif 
 
#endif