xref: /onnv-gate/usr/src/lib/libbc/inc/include/sys/ioctl.h (revision 0:68f95e015346)
1*0Sstevel@tonic-gate /*
2*0Sstevel@tonic-gate  * Copyright 1987 Sun Microsystems, Inc.  All rights reserved.
3*0Sstevel@tonic-gate  * Use is subject to license terms.
4*0Sstevel@tonic-gate  */
5*0Sstevel@tonic-gate 
6*0Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
7*0Sstevel@tonic-gate 
8*0Sstevel@tonic-gate /*
9*0Sstevel@tonic-gate  * Copyright (c) 1982, 1986 Regents of the University of California.
10*0Sstevel@tonic-gate  * All rights reserved.  The Berkeley software License Agreement
11*0Sstevel@tonic-gate  * specifies the terms and conditions for redistribution.
12*0Sstevel@tonic-gate  */
13*0Sstevel@tonic-gate 
14*0Sstevel@tonic-gate /*
15*0Sstevel@tonic-gate  * Ioctl definitions
16*0Sstevel@tonic-gate  */
17*0Sstevel@tonic-gate 
18*0Sstevel@tonic-gate #ifndef _sys_ioctl_h
19*0Sstevel@tonic-gate #define _sys_ioctl_h
20*0Sstevel@tonic-gate 
21*0Sstevel@tonic-gate #include <sys/ttychars.h>
22*0Sstevel@tonic-gate #include <sys/ttydev.h>
23*0Sstevel@tonic-gate #include <sys/ttold.h>
24*0Sstevel@tonic-gate 
25*0Sstevel@tonic-gate #define	TANDEM		O_TANDEM
26*0Sstevel@tonic-gate #define	CBREAK		O_CBREAK
27*0Sstevel@tonic-gate #define	LCASE		O_LCASE
28*0Sstevel@tonic-gate #define	ECHO		O_ECHO
29*0Sstevel@tonic-gate #define	CRMOD		O_CRMOD
30*0Sstevel@tonic-gate #define	RAW		O_RAW
31*0Sstevel@tonic-gate #define	ODDP		O_ODDP
32*0Sstevel@tonic-gate #define	EVENP		O_EVENP
33*0Sstevel@tonic-gate #define	ANYP		O_ANYP
34*0Sstevel@tonic-gate #define	NLDELAY		O_NLDELAY
35*0Sstevel@tonic-gate #define		NL0		O_NL0
36*0Sstevel@tonic-gate #define		NL1		O_NL1
37*0Sstevel@tonic-gate #define		NL2		O_NL2
38*0Sstevel@tonic-gate #define		NL3		O_NL3
39*0Sstevel@tonic-gate #define	TBDELAY		O_TBDELAY
40*0Sstevel@tonic-gate #define		TAB0		O_TAB0
41*0Sstevel@tonic-gate #define		TAB1		O_TAB1
42*0Sstevel@tonic-gate #define		TAB2		O_TAB2
43*0Sstevel@tonic-gate #define	XTABS		O_XTABS
44*0Sstevel@tonic-gate #define	CRDELAY		O_CRDELAY
45*0Sstevel@tonic-gate #define		CR0		O_CR0
46*0Sstevel@tonic-gate #define		CR1		O_CR1
47*0Sstevel@tonic-gate #define		CR2		O_CR2
48*0Sstevel@tonic-gate #define		CR3		O_CR3
49*0Sstevel@tonic-gate #define	VTDELAY		O_VTDELAY
50*0Sstevel@tonic-gate #define		FF0		O_FF0
51*0Sstevel@tonic-gate #define		FF1		O_FF1
52*0Sstevel@tonic-gate #define	BSDELAY		O_BSDELAY
53*0Sstevel@tonic-gate #define		BS0		O_BS0
54*0Sstevel@tonic-gate #define		BS1		O_BS1
55*0Sstevel@tonic-gate #define 	ALLDELAY	O_ALLDELAY
56*0Sstevel@tonic-gate #define	CRTBS		O_CRTBS
57*0Sstevel@tonic-gate #define	PRTERA		O_PRTERA
58*0Sstevel@tonic-gate #define	CRTERA		O_CRTERA
59*0Sstevel@tonic-gate #define	TILDE		O_TILDE
60*0Sstevel@tonic-gate #define	MDMBUF		O_MDMBUF
61*0Sstevel@tonic-gate #define	LITOUT		O_LITOUT
62*0Sstevel@tonic-gate #define	TOSTOP		O_TOSTOP
63*0Sstevel@tonic-gate #define	FLUSHO		O_FLUSHO
64*0Sstevel@tonic-gate #define	NOHANG		O_NOHANG
65*0Sstevel@tonic-gate #define	L001000		O_L001000
66*0Sstevel@tonic-gate #define	CRTKIL		O_CRTKIL
67*0Sstevel@tonic-gate #define	PASS8		O_PASS8
68*0Sstevel@tonic-gate #define	CTLECH		O_CTLECH
69*0Sstevel@tonic-gate #define	PENDIN		O_PENDIN
70*0Sstevel@tonic-gate #define	DECCTQ		O_DECCTQ
71*0Sstevel@tonic-gate #define	NOFLSH		O_NOFLSH
72*0Sstevel@tonic-gate 
73*0Sstevel@tonic-gate #include <sys/filio.h>
74*0Sstevel@tonic-gate 
75*0Sstevel@tonic-gate #include <sys/sockio.h>
76*0Sstevel@tonic-gate 
77*0Sstevel@tonic-gate #endif /*!_sys_ioctl_h*/
78