1{
2    This file is part of the Free Pascal run time library.
3    Copyright (c) 1999-2000 by Peter Vreman
4    member of the Free Pascal development team.
5
6    See the file COPYING.FPC, included in this distribution,
7    for details about the copyright.
8
9    This file contains the termios interface.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
14
15 **********************************************************************}
16
17unit termio;
18
19interface
20{$inline on}
21
22Uses BaseUnix;          // load base unix typing
23
24// load types + consts
25
26{$i termios.inc}
27
28// load default prototypes from unix dir.
29
30{$i termiosh.inc}
31
32implementation
33
34// load implementation for prototypes from current dir.
35{$i termiosproc.inc}
36
37// load ttyname from unix dir.
38{$i ttyname.inc}
39
40end.
41