From 0bad58635710078a91cc43f14e521bcef0c2b99a Mon Sep 17 00:00:00 2001
From: wlott <wlott>
Date: Sat, 7 Jul 1990 00:53:08 +0000
Subject: [PATCH] Changed short/long-floats to single/double-floats.

---
 code/c-call.lisp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/code/c-call.lisp b/code/c-call.lisp
index c2967ecee..f6b6475b8 100644
--- a/code/c-call.lisp
+++ b/code/c-call.lisp
@@ -160,9 +160,9 @@
 (proclaim '(function get-c-type (t) c-type))
 (defun get-c-type (spec)
   (cond ((gethash spec *c-type-names*))
-	((member spec
-		 '(c-procedure short-float long-float null-terminated-string))
-	 (let ((size (if (eq spec 'long-float) 64 32)))
+	((member spec '(c-procedure single-float double-float
+				    null-terminated-string))
+	 (let ((size (if (eq spec 'double-float) 64 32)))
 	   (make-primitive-type
 	    :description spec
 	    :size size
-- 
GitLab