sysunixh.inc 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. $Id$
  3. This file is part of the Free Pascal Run time library.
  4. Copyright (c) 2001 by the Free Pascal development team
  5. This file contains the OS independent declarations of the system unit
  6. for unix styled systems
  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. {$define newsignal}
  14. {$I systemh.inc}
  15. {$I heaph.inc}
  16. {$ifdef m68k}
  17. { used for single computations }
  18. const
  19. BIAS4 = $7f-1;
  20. {$endif}
  21. {Platform specific information}
  22. const
  23. LineEnding = #10;
  24. LFNSupport = true;
  25. DirectorySeparator = '/';
  26. DriveSeparator = ':';
  27. PathSeparator = ':';
  28. { FileNameCaseSensitive is defined below! }
  29. const
  30. UnusedHandle = -1;
  31. StdInputHandle = 0;
  32. StdOutputHandle = 1;
  33. StdErrorHandle = 2;
  34. FileNameCaseSensitive : boolean = true;
  35. sLineBreak = LineEnding;
  36. DefaultTextLineBreakStyle : TTextLineBreakStyle = tlbsLF;
  37. var
  38. argc : longint;
  39. argv : ppchar;
  40. envp : ppchar;
  41. {
  42. $Log$
  43. Revision 1.16 2002-10-15 19:30:15 peter
  44. * remove threadh.inc include
  45. Revision 1.15 2002/09/07 16:01:28 peter
  46. * old logs removed and tabs fixed
  47. Revision 1.14 2002/07/01 16:29:05 peter
  48. * sLineBreak changed to normal constant like Kylix
  49. }