0.pre7.86.flaky7.22:
[sbcl.git] / src / code / cross-type.lisp
index b59bd3b..8110183 100644 (file)
     (check-type type (or symbol cons))
     (cross-typep obj type)))
 
-(defparameter *universal-function-type*
-  (make-function-type :wild-args t
-                     :returns *wild-type*))
-
 (defun ctype-of (x)
   (typecase x
     (function
         ;; There's no ANSI way to find out what the function is
         ;; declared to be, so we just return the CTYPE for the
         ;; most-general function.
-        *universal-function-type*))
+        *universal-fun-type*))
     (symbol
      (make-member-type :members (list x)))
     (number