mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-15 08:47:35 +02:00
Refactoring
This commit is contained in:
parent
3553d0773c
commit
8d34ce909b
2 changed files with 0 additions and 8 deletions
|
@ -266,11 +266,6 @@ void dispatch(void *data, int argc, function_type func, object clo, object cont,
|
||||||
void dispatch_va(void *data, int argc, function_type_va func, object clo, object cont, object args);
|
void dispatch_va(void *data, int argc, function_type_va func, object clo, object cont, object args);
|
||||||
void do_dispatch(void *data, int argc, function_type func, object clo, object *buffer);
|
void do_dispatch(void *data, int argc, function_type func, object clo, object *buffer);
|
||||||
|
|
||||||
/* Global variables. */
|
|
||||||
extern long no_gcs; /* Count the number of GC's. */
|
|
||||||
extern long no_major_gcs; /* Count the number of GC's. */
|
|
||||||
|
|
||||||
/* Define Lisp constants we need. */
|
|
||||||
extern const object boolean_t;
|
extern const object boolean_t;
|
||||||
extern const object boolean_f;
|
extern const object boolean_f;
|
||||||
extern const object quote_void;
|
extern const object quote_void;
|
||||||
|
|
|
@ -94,9 +94,6 @@ void Cyc_check_bounds(void *data, const char *label, int len, int index) {
|
||||||
|
|
||||||
/* Global variables. */
|
/* Global variables. */
|
||||||
static gc_heap_root *Cyc_heap;
|
static gc_heap_root *Cyc_heap;
|
||||||
long no_gcs = 0; /* Count the number of GC's. */
|
|
||||||
long no_major_gcs = 0; /* Count the number of GC's. */
|
|
||||||
|
|
||||||
object Cyc_global_variables = NULL;
|
object Cyc_global_variables = NULL;
|
||||||
int _cyc_argc = 0;
|
int _cyc_argc = 0;
|
||||||
char **_cyc_argv = NULL;
|
char **_cyc_argv = NULL;
|
||||||
|
|
Loading…
Add table
Reference in a new issue