Skip to content
Snippets Groups Projects
Commit ac2440ca authored by dtc's avatar dtc
Browse files

Make the linux specific code conditional.

parent 807ac92a
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/core.lisp,v 1.33 1997/04/01 12:04:25 pw Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/compiler/generic/core.lisp,v 1.34 1997/04/02 20:53:35 dtc Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -95,6 +95,9 @@ ...@@ -95,6 +95,9 @@
(gethash name lisp::*assembler-routines*)) (gethash name lisp::*assembler-routines*))
(:foreign (:foreign
(assert (stringp name)) (assert (stringp name))
#-linux
(gethash name lisp::*foreign-symbols*)
#+linux
(multiple-value-bind (multiple-value-bind
(value found) (value found)
(gethash name lisp::*foreign-symbols*) (gethash name lisp::*foreign-symbols*)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment