Removed obsolete function

This commit is contained in:
Justin Ethier 2016-03-21 21:32:26 -04:00
parent f11fec9f82
commit 9d5b97fc74
2 changed files with 0 additions and 3 deletions

View file

@ -149,7 +149,6 @@ object Cyc_eq(object x, object y);
object Cyc_set_car(void *, object l, object val) ;
object Cyc_set_cdr(void *, object l, object val) ;
object Cyc_length(void *d, object l);
object Cyc_length2(void *d, object l);
integer_type Cyc_length_as_object(void *d, object l);
object Cyc_vector_length(void *data, object v);
object Cyc_vector_ref(void *d, object v, object k);

View file

@ -1007,8 +1007,6 @@ object Cyc_length(void *data, object l){
}
return obj_int2obj(len);
}
object Cyc_length2(void *data, object l){
return Cyc_length(data, l); }
object Cyc_number2string(void *data, object cont, object n) {
char buffer[1024];