Fixing Racket uint8-ref/set!

This commit is contained in:
retropikzel 2025-07-23 19:44:29 +03:00
parent 5d151956d5
commit a8264b23b5
2 changed files with 3 additions and 2 deletions

View File

@ -59,8 +59,8 @@
(scheme process-context)
(system foreign)
(system foreign-library)
(only (guile) include-from-path)
(only (rnrs bytevectors)
;(only (guile) include-from-path)
#;(only (rnrs bytevectors)
bytevector-int8-set!
bytevector-uint-ref)))
(kawa

View File

@ -455,6 +455,7 @@
(define (native-endianness)
(cond-expand (little-endian 'little)
(racket 'little) ;; FIXME
(else 'big)))
;;; Already defined by (scheme base):