unixtype.pp 690 B

123456789101112131415161718192021222324252627
  1. {
  2. This file is part of the Free Pascal run time library.
  3. (c) 2004 by Marco van de Voort
  4. member of the Free Pascal development team.
  5. THIS UNIT IS NOT FOR USE BY ENDUSERS. IT IS USED TO AVOID CERTAIN
  6. CIRCULAR REFERENCE PROBLEMS.
  7. See the file COPYING.FPC, included in this distribution,
  8. for details about the copyright.
  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 unixtype;
  14. Interface
  15. {$i ptypes.inc}
  16. Type
  17. TTime = time_t;
  18. Implementation
  19. End.