2007-09-20 18:09:08 -04:00
|
|
|
#ifndef __FACTOR_MASTER_H__
|
|
|
|
#define __FACTOR_MASTER_H__
|
|
|
|
|
|
|
|
#ifndef WINCE
|
2009-04-28 01:11:09 -04:00
|
|
|
#include <errno.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef FACTOR_DEBUG
|
|
|
|
#include <assert.h>
|
2007-09-20 18:09:08 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <setjmp.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
|
|
|
|
#include "layouts.h"
|
|
|
|
#include "platform.h"
|
|
|
|
#include "primitives.h"
|
|
|
|
#include "run.h"
|
2007-10-28 04:33:36 -04:00
|
|
|
#include "profiler.h"
|
2007-10-02 17:53:05 -04:00
|
|
|
#include "errors.h"
|
2007-09-20 18:09:08 -04:00
|
|
|
#include "bignumint.h"
|
|
|
|
#include "bignum.h"
|
2009-01-25 00:39:00 -05:00
|
|
|
#include "write_barrier.h"
|
|
|
|
#include "data_heap.h"
|
2007-09-20 18:09:08 -04:00
|
|
|
#include "data_gc.h"
|
2009-04-28 01:48:00 -04:00
|
|
|
#include "local_roots.h"
|
2008-04-04 22:44:39 -04:00
|
|
|
#include "debug.h"
|
2009-04-28 18:26:11 -04:00
|
|
|
#include "arrays.h"
|
|
|
|
#include "strings.h"
|
|
|
|
#include "booleans.h"
|
|
|
|
#include "byte_arrays.h"
|
|
|
|
#include "tuples.h"
|
|
|
|
#include "words.h"
|
2007-09-20 18:09:08 -04:00
|
|
|
#include "math.h"
|
|
|
|
#include "float_bits.h"
|
|
|
|
#include "io.h"
|
|
|
|
#include "code_gc.h"
|
2009-01-24 21:13:17 -05:00
|
|
|
#include "code_block.h"
|
2007-10-02 17:53:05 -04:00
|
|
|
#include "code_heap.h"
|
2007-09-20 18:09:08 -04:00
|
|
|
#include "image.h"
|
2007-10-02 17:53:05 -04:00
|
|
|
#include "callstack.h"
|
2007-09-20 18:09:08 -04:00
|
|
|
#include "alien.h"
|
2007-10-02 17:53:05 -04:00
|
|
|
#include "quotations.h"
|
2009-04-28 01:48:00 -04:00
|
|
|
#include "jit.h"
|
2009-04-30 04:37:07 -04:00
|
|
|
#include "dispatch.h"
|
2009-04-28 04:48:37 -04:00
|
|
|
#include "inline_cache.h"
|
2007-09-20 18:09:08 -04:00
|
|
|
#include "factor.h"
|
|
|
|
#include "utilities.h"
|
|
|
|
|
|
|
|
#endif /* __FACTOR_MASTER_H__ */
|