0.9.8.7:
[sbcl.git] / src / code / target-misc.lisp
index 65fe84d..c636770 100644 (file)
 (defun machine-instance ()
   #!+sb-doc
   "Return a string giving the name of the local machine."
-  (sb!unix:unix-gethostname))
+  #!+win32 "some-random-windows-box"
+  #!-win32 (sb!unix:unix-gethostname))
 
 (defvar *machine-version*)