Fixing Mosh

This commit is contained in:
retropikzel 2025-07-26 09:10:13 +03:00
parent f18a54aab4
commit 5533422d82
1 changed files with 3 additions and 0 deletions

View File

@ -101,6 +101,9 @@
(kawa #t) ; FIXME (kawa #t) ; FIXME
(chibi #t) (chibi #t)
(gauche (define c-null? pointer-null?)) (gauche (define c-null? pointer-null?))
(mosh (define c-null?
(lambda (pointer) (and (c-bytevector? pointer)
(= (pointer->integer pointer) 0)))))
(else (define c-null? (else (define c-null?
(lambda (pointer) (lambda (pointer)
(display "HERE123: ") (display "HERE123: ")