mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-11 23:07:36 +02:00
Removed obsolete function
This commit is contained in:
parent
f11fec9f82
commit
9d5b97fc74
2 changed files with 0 additions and 3 deletions
|
@ -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);
|
||||
|
|
|
@ -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];
|
||||
|
|
Loading…
Add table
Reference in a new issue