1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- {
- $Id$
- This file is part of the Free Pascal run time library.
- Copyright (c) 1999-2000 by Peter Vreman
- member of the Free Pascal development team.
- See the file COPYING.FPC, included in this distribution,
- for details about the copyright.
- This file contains the termios interface.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- **********************************************************************}
- unit termio;
- interface
- Uses BaseUnix; // load base unix typing
- // load types + consts
- {$i termios.inc}
- // load default prototypes from unix dir.
- {$i termiosh.inc}
- implementation
- {$i textrec.inc}
- // load implementation for prototypes from current dir.
- {$i termiosproc.inc}
- // load ttyname from unix dir.
- {$i ttyname.inc}
- end.
- {
- $Log$
- Revision 1.1 2004-01-22 13:55:02 marco
- * first port that shows some life based on FPC_USE_LIBC
- Revision 1.1 2004/01/04 01:13:23 marco
- * first 1.1 netbsd rtl, basically freebsd copy and paste with 1.0.10 netbsd structures
- Revision 1.1 2003/11/19 17:15:31 marco
- * termio new includefile
- }
|