Where can I find lispworks-float:single-float-bits?
Hello, I am trying to load the CL-PROTOBUFS library from Quicklisp. On LispWorks 7.1.2, compilation fails complaining that the lispworks-float package does not exist. The function in question is the following: (defun single-float-bits (x) (declare (type single-float x)) #+abcl (system:single-float-bits x) #+allegro (multiple-value-bind (high low) (excl:single-float-to-shorts x) (declare (type (unsigned-byte 16) high low)) (logior (ash high 16) low)) #+ccl (ccl::single-float-bits x) #+cmu (kernel:single-float-bits x) #+sbcl (sb-kernel:single-float-bits x) #+lispworks (lispworks-float:single-float-bits x)) Does anyone knows of a compatible substitution? Thanks in advance, Cam _______________________________________________ Lisp Hug - the mailing list for LispWorks users lisp-hug@lispworks.com http://www.lispworks.com/support/lisp-hug.html