mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-15 16:57:35 +02:00
Refactoring
This commit is contained in:
parent
007c7d3fe5
commit
a946a6cb69
2 changed files with 2 additions and 4 deletions
|
@ -200,7 +200,7 @@ object Cyc_command_line_arguments(void *data, object cont);
|
||||||
object Cyc_system(object cmd);
|
object Cyc_system(object cmd);
|
||||||
object Cyc_char2integer(object chr);
|
object Cyc_char2integer(object chr);
|
||||||
object Cyc_integer2char(void *data, object n);
|
object Cyc_integer2char(void *data, object n);
|
||||||
void Cyc_halt(closure);
|
void Cyc_halt(object obj);
|
||||||
object __halt(object obj);
|
object __halt(object obj);
|
||||||
port_type Cyc_stdout(void);
|
port_type Cyc_stdout(void);
|
||||||
port_type Cyc_stdin(void);
|
port_type Cyc_stdin(void);
|
||||||
|
|
|
@ -1935,9 +1935,7 @@ object Cyc_integer2char(void *data, object n)
|
||||||
return obj_char2obj(val);
|
return obj_char2obj(val);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Cyc_halt(closure);
|
void Cyc_halt(object obj)
|
||||||
void Cyc_halt(env)
|
|
||||||
closure env;
|
|
||||||
{
|
{
|
||||||
#if DEBUG_SHOW_DIAG
|
#if DEBUG_SHOW_DIAG
|
||||||
gc_print_stats(Cyc_heap);
|
gc_print_stats(Cyc_heap);
|
||||||
|
|
Loading…
Add table
Reference in a new issue