mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-02 15:40:55 -08:00
Add more symbols to src/c/symbols_list.h, and resolve associated conflicts.
This commit is contained in:
parent
757572ca7f
commit
f20736084b
19 changed files with 99 additions and 56 deletions
|
|
@ -16,7 +16,7 @@
|
|||
#include "ecl.h"
|
||||
|
||||
cl_object
|
||||
cl_allocate_instance(cl_object clas, int size)
|
||||
ecl_allocate_instance(cl_object clas, int size)
|
||||
{
|
||||
cl_object x = cl_alloc_instance(size);
|
||||
int i;
|
||||
|
|
@ -27,12 +27,12 @@ cl_allocate_instance(cl_object clas, int size)
|
|||
}
|
||||
|
||||
cl_object
|
||||
si_allocate_instance(cl_object clas, cl_object size)
|
||||
si_allocate_raw_instance(cl_object clas, cl_object size)
|
||||
{
|
||||
if (type_of(clas) != t_instance)
|
||||
FEwrong_type_argument(@'instance', clas);
|
||||
|
||||
@(return cl_allocate_instance(clas, fixnnint(size)))
|
||||
@(return ecl_allocate_instance(clas, fixnnint(size)))
|
||||
}
|
||||
|
||||
/* corr is a list of (newi . oldi) describing which of the new slots
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue