Skip to content
Snippets Groups Projects
Commit 35f3ece9 authored by wlott's avatar wlott
Browse files

Fixed UNIX-IOCTL to not flame out of the cmd is a ub-32 instead of a sb-32.

parent f2be121b
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/unix.lisp,v 1.17 1992/03/06 11:29:02 wlott Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/unix.lisp,v 1.18 1992/03/06 11:57:54 wlott Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -1005,7 +1005,7 @@
information."
(declare (type unix-fd fd)
(type (unsigned-byte 32) cmd))
(void-syscall ("ioctl" int int (* char)) fd cmd arg))
(void-syscall ("ioctl" int unsigned-int (* char)) fd cmd arg))
(defun tcsetpgrp (fd pgrp)
"Set the tty-process-group for the unix file-descriptor FD to PGRP."
......
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