pike.git
/
src
/
global.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/global.h:38:
*/ #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
pike.git/src/global.h:65:
# 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