Skip to content
Snippets Groups Projects
Commit 2046b621 authored by hallgren's avatar hallgren
Browse files

Updated for the sgi.

parent 67dc42fa
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/internet.lisp,v 1.14 1994/04/06 17:03:51 hallgren Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/internet.lisp,v 1.15 1994/06/29 21:39:27 hallgren Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -30,9 +30,9 @@
send-character-out-of-band))
(defconstant sock-stream 1)
(defconstant sock-dgram 2)
(defconstant sock-raw 3)
(defconstant sock-stream #-irix 1 #+irix 2)
(defconstant sock-dgram #-irix 2 #+irix 1)
(defconstant sock-raw #-irix 3 #+irix 4)
(defconstant af-unix 1)
(defconstant af-inet 2)
......
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