mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-24 20:45:06 +02:00
Added eof-object
This commit is contained in:
parent
43e0cfdd4c
commit
7d0982992c
1 changed files with 4 additions and 1 deletions
|
@ -120,6 +120,7 @@
|
||||||
round
|
round
|
||||||
exact
|
exact
|
||||||
inexact
|
inexact
|
||||||
|
eof-object
|
||||||
|
|
||||||
;;;;
|
;;;;
|
||||||
; Possibly missing functions:
|
; Possibly missing functions:
|
||||||
|
@ -146,7 +147,6 @@
|
||||||
; define-record-type
|
; define-record-type
|
||||||
; define-values
|
; define-values
|
||||||
; denominator
|
; denominator
|
||||||
; eof-object
|
|
||||||
; get-output-string
|
; get-output-string
|
||||||
; guard
|
; guard
|
||||||
; import
|
; import
|
||||||
|
@ -913,4 +913,7 @@
|
||||||
Cyc_check_num(data, z2);
|
Cyc_check_num(data, z2);
|
||||||
d.value = pow( unbox_number(z1), unbox_number(z2) );
|
d.value = pow( unbox_number(z1), unbox_number(z2) );
|
||||||
return_closcall1(data, k, &d); ")
|
return_closcall1(data, k, &d); ")
|
||||||
|
(define eof-object
|
||||||
|
"(void *data, int argc, closure _, object k)"
|
||||||
|
" return_closcall1(data, k, Cyc_EOF); ")
|
||||||
))
|
))
|
||||||
|
|
Loading…
Add table
Reference in a new issue