sysunixh.inc 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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 : string[1] = LineEnding;
  36. DefaultTextLineBreakStyle : TTextLineBreakStyle = tlbsLF;
  37. var
  38. argc : longint;
  39. argv : ppchar;
  40. envp : ppchar;
  41. {
  42. $Log$
  43. Revision 1.10 2001-06-27 21:37:39 peter
  44. * v10 merges
  45. Revision 1.9 2001/06/18 14:26:16 jonas
  46. * move platform independent constant declarations after inclusion of
  47. systemh.inc
  48. Revision 1.8 2001/06/13 22:20:11 hajny
  49. + platform specific information
  50. Revision 1.7 2001/04/13 23:49:49 peter
  51. * fixes for the stricter compiler
  52. Revision 1.6 2001/04/13 22:30:55 peter
  53. * added filenamecasesensitive var
  54. Revision 1.5 2001/03/22 21:56:27 florian
  55. * typo fixed
  56. Revision 1.4 2001/03/21 23:32:13 florian
  57. + header and log added
  58. }