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}
21Uses UnixType,BaseUnix,ctypes;          // load base unix typing
22
23// load types + consts
24
25{$i termios.inc}
26
27// load default prototypes from unix dir.
28
29{$i termiosh.inc}
30
31implementation
32
33
34
35// load implementation for prototypes from current dir.
36{$i termiosproc.inc}
37
38// load ttyname from unix dir.
39{$i ttyname.inc}
40
41end.
42