From: Kevin M. Rosenberg Date: Sat, 17 May 2003 07:34:54 +0000 (+0000) Subject: r5000: *** empty log message *** X-Git-Tag: v3.8.6~837 X-Git-Url: http://git.kpe.io/?p=clsql.git;a=commitdiff_plain;h=2c5ea1301495b1b3473c8c73fdb8ea236aebc0b0 r5000: *** empty log message *** --- diff --git a/uffi/clsql-uffi.lisp b/uffi/clsql-uffi.lisp index 1b6153b..12b8711 100644 --- a/uffi/clsql-uffi.lisp +++ b/uffi/clsql-uffi.lisp @@ -7,7 +7,7 @@ ;;;; Programmers: Kevin M. Rosenberg ;;;; Date Started: Mar 2002 ;;;; -;;;; $Id: clsql-uffi.lisp,v 1.20 2003/05/16 18:53:57 kevin Exp $ +;;;; $Id: clsql-uffi.lisp,v 1.21 2003/05/17 07:34:54 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -121,9 +121,9 @@ (make-64-bit-integer high32 low32))))) (t ;; Choose optimized routine - #-(or cmu sbcl) + #-(or cmu sbcl lispworks scl) (native-to-string char-ptr) - #+(or cmu sbcl) + #+(or cmu sbcl lispworks scl) (uffi:convert-from-foreign-string char-ptr))))))) @@ -131,6 +131,7 @@ ((str (* :unsigned-char))) :returning :unsigned-int) +#-allegro (defun native-to-string (s) (declare (optimize (speed 3) (space 0) (safety 0) (compilation-speed 0)) (type char-ptr-def s))