summaryrefslogtreecommitdiffstats
path: root/ffi.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2017-05-09 06:57:26 -0700
committerKaz Kylheku <kaz@kylheku.com>2017-05-09 06:57:26 -0700
commit179218caf4521209cbbe4d6b1267ed0aa3d70245 (patch)
tree86a5153f2ef20d2714baf6868c9490841fc65df6 /ffi.c
parentcb402a0d51e4fe663641ab7e99c0c9d14822c325 (diff)
downloadtxr-179218caf4521209cbbe4d6b1267ed0aa3d70245.tar.gz
txr-179218caf4521209cbbe4d6b1267ed0aa3d70245.tar.bz2
txr-179218caf4521209cbbe4d6b1267ed0aa3d70245.zip
ffi: remove cptr stuff.
* ffi.c (cptr_make): Function removed. (ffi_init): Registration of cptr and cptr-null removed.
Diffstat (limited to 'ffi.c')
-rw-r--r--ffi.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/ffi.c b/ffi.c
index cdfe41ca..5918933d 100644
--- a/ffi.c
+++ b/ffi.c
@@ -1929,11 +1929,6 @@ mem_t *ffi_closure_get_fptr(val closure)
return tfcl->fptr;
}
-static val cptr_make(val n)
-{
- return if3(missingp(n), cptr(0), cptr(coerce(mem_t *, c_num(n))));
-}
-
val ffi_typedef(val name, val type)
{
return sethash(ffi_typedef_hash, name, type);
@@ -2055,7 +2050,6 @@ void ffi_init(void)
reg_fun(intern(lit("ffi-make-call-desc"), user_package), func_n4(ffi_make_call_desc));
reg_fun(intern(lit("ffi-call"), user_package), func_n3(ffi_call_wrap));
reg_fun(intern(lit("ffi-make-closure"), user_package), func_n2(ffi_make_closure));
- reg_fun(intern(lit("cptr"), user_package), func_n1o(cptr_make, 0));
reg_fun(intern(lit("ffi-typedef"), user_package), func_n2(ffi_typedef));
reg_fun(intern(lit("ffi-size"), user_package), func_n1(ffi_size));
reg_fun(intern(lit("ffi-put-into"), user_package), func_n3(ffi_put_into));
@@ -2063,7 +2057,6 @@ void ffi_init(void)
reg_fun(intern(lit("ffi-in"), user_package), func_n4(ffi_in));
reg_fun(intern(lit("ffi-get"), user_package), func_n2(ffi_get));
reg_fun(intern(lit("ffi-out"), user_package), func_n4(ffi_out));
- reg_varl(intern(lit("cptr-null"), user_package), cptr(0));
ffi_typedef_hash = make_hash(nil, nil, nil);
ffi_init_types();
ffi_init_extra_types();