termio.pp 1.2 KB

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