-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathscheme.h
More file actions
36 lines (25 loc) · 707 Bytes
/
scheme.h
File metadata and controls
36 lines (25 loc) · 707 Bytes
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
/* LeeScheme/scheme.h - Copyright (C) Lee Richard Boynton, 1993-2000. */
#ifndef _SCHEME_
#define _SCHEME_
#define VERSION_STRING "LeeScheme-5.9"
#define COPYRIGHT_STRING "Copyright (C) 1993-2000 Lee Richard Boynton. All rights reserved."
#include <stdarg.h>
#include "object.h"
#include "sys.h"
#include "runtime.h"
#include "heap.h"
#include "symbol.h"
#include "port.h"
#include "io.h"
#include "proc.h"
#include "logical.h"
#include "number.h"
#include "string.h"
#include "list.h"
#include "vector.h"
#include "compiler.h"
#include "macros.h"
#include "table.h"
extern void init_scheme(long heap_kbytes,long stack_kbytes,long code_kbytes);
extern object execute_file(char *filename);
#endif