mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-24 20:45:06 +02:00
Added TODO
This commit is contained in:
parent
78be3cd185
commit
4c08f7099d
1 changed files with 8 additions and 1 deletions
|
@ -68,7 +68,14 @@
|
||||||
(/ (c-log z1) (c-log z2*)))))
|
(/ (c-log z1) (c-log z2*)))))
|
||||||
(define-c c-log
|
(define-c c-log
|
||||||
"(void *data, int argc, closure _, object k, object z)"
|
"(void *data, int argc, closure _, object k, object z)"
|
||||||
" return_inexact_double_op(data, k, log, z);")
|
" return_inexact_double_op(data, k, log, z);"
|
||||||
|
; TODO: experimenting with how an inline definition might look.
|
||||||
|
; need something that can both work within the same module and
|
||||||
|
; also when imported into another module.
|
||||||
|
; inline:
|
||||||
|
; "(void *data, object ptr, object z)"
|
||||||
|
; " return_inexact_double_op(data, k, log, z);"
|
||||||
|
)
|
||||||
(define-c sin
|
(define-c sin
|
||||||
"(void *data, int argc, closure _, object k, object z)"
|
"(void *data, int argc, closure _, object k, object z)"
|
||||||
" return_inexact_double_op(data, k, sin, z);")
|
" return_inexact_double_op(data, k, sin, z);")
|
||||||
|
|
Loading…
Add table
Reference in a new issue