aboutsummaryrefslogtreecommitdiff
path: root/sys/tty/ttycaps.x
blob: e6fcbcf06fb71494064727a55bc8095748bb9baf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.

include	"tty.h"

# TTYCAPS -- Return a pointer to the caplist field of an open TTY descriptor.

pointer procedure ttycaps (tty)

pointer	tty			# tty descriptor

begin
	return (P2C (tty + T_OFFCAP))
end