Fixing stklos
This commit is contained in:
parent
14c5960125
commit
922eab6ea1
|
|
@ -458,10 +458,6 @@
|
|||
(racket (if (system-big-endian?) 'big 'little))
|
||||
(else 'big)))
|
||||
|
||||
;;; Already defined by (scheme base):
|
||||
;;;
|
||||
;;; c-bytevector? make-c-bytevector c-bytevector-length
|
||||
|
||||
(define (c-bytevector=? bv1 bv2)
|
||||
(if (and (c-bytevector? bv1)
|
||||
(c-bytevector? bv2))
|
||||
|
|
|
|||
|
|
@ -25,7 +25,8 @@
|
|||
|
||||
(define c-bytevector?
|
||||
(lambda (object)
|
||||
(cpointer? object)))
|
||||
(and (not (void? object))
|
||||
(cpointer? object))))
|
||||
|
||||
(define-syntax define-c-procedure
|
||||
(syntax-rules ()
|
||||
|
|
|
|||
Loading…
Reference in New Issue