setcttyid.lisp 213 B

1234567891011121314
  1. (in-package :hurd)
  2. (defcfun ("setcttyid" %setcttyid)
  3. :int
  4. (port port))
  5. (defun setcttyid (port)
  6. "Set the CTTY port."
  7. (declare (type fixnum port))
  8. (let ((err (%setcttyid port)))
  9. (not (= err -1))))