Refactoring

This commit is contained in:
Justin Ethier 2016-04-27 03:58:38 -04:00
parent 007c7d3fe5
commit a946a6cb69
2 changed files with 2 additions and 4 deletions

View file

@ -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);

View file

@ -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);