sysunixh.inc 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. {$ifdef m68k}
  14. { used for single computations }
  15. const
  16. BIAS4 = $7f-1;
  17. {$endif}
  18. {$define newsignal}
  19. {$I systemh.inc}
  20. {$I heaph.inc}
  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.9 2001-06-18 14:26:16 jonas
  44. * move platform independent constant declarations after inclusion of
  45. systemh.inc
  46. Revision 1.8 2001/06/13 22:20:11 hajny
  47. + platform specific information
  48. Revision 1.7 2001/04/13 23:49:49 peter
  49. * fixes for the stricter compiler
  50. Revision 1.6 2001/04/13 22:30:55 peter
  51. * added filenamecasesensitive var
  52. Revision 1.5 2001/03/22 21:56:27 florian
  53. * typo fixed
  54. Revision 1.4 2001/03/21 23:32:13 florian
  55. + header and log added
  56. }