#ifndef __FACTOR_H__ #define __FACTOR_H__ #include "platform.h" #ifdef _WIN64 typedef long long F_FIXNUM; typedef unsigned long long CELL; #else typedef long F_FIXNUM; typedef unsigned long CELL; #endif #define CELLS ((signed)sizeof(CELL)) #define WORD_SIZE (CELLS*8) #define HALF_WORD_SIZE (CELLS*4) #define HALF_WORD_MASK (((unsigned long)1< #include #include #include #include #include #include #include #include #include #include #include #ifdef WIN32 #include #include /* Difference between Jan 1 00:00:00 1601 and Jan 1 00:00:00 1970 */ #define EPOCH_OFFSET 0x019db1ded53e8000LL #else #include #include #include #include #include #include #include #endif #include "debug.h" #include "error.h" #include "cards.h" #include "memory.h" #include "gc.h" #include "boolean.h" #include "word.h" #include "run.h" #include "signal.h" #include "cons.h" #include "fixnum.h" #include "array.h" #include "s48_bignumint.h" #include "s48_bignum.h" #include "bignum.h" #include "ratio.h" #include "float.h" #include "complex.h" #include "string.h" #include "misc.h" #include "sbuf.h" #include "io.h" #include "file.h" #include "image.h" #include "primitives.h" #include "vector.h" #include "hashtable.h" #include "stack.h" #include "compiler.h" #include "relocate.h" #include "alien.h" #include "dll.h" #include "wrapper.h" #endif /* __FACTOR_H__ */