pike.git
/
src
/
global.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/global.h:26:
#ifndef STRUCT_SVALUE_DECLARED #define STRUCT_SVALUE_DECLARED struct svalue; #endif struct sockaddr; struct object; struct array; struct svalue; #include "machine.h"
-
#include "config.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
+
/* 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