sysunixh.inc 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. const
  22. UnusedHandle = -1;
  23. StdInputHandle = 0;
  24. StdOutputHandle = 1;
  25. StdErrorHandle = 2;
  26. sLineBreak : string[1] = #10;
  27. DefaultTextLineBreakStyle : TTextLineBreakStyle = tlbsLF;
  28. var
  29. argc : longint;
  30. argv : ppchar;
  31. envp : ppchar;
  32. {
  33. $Log$
  34. Revision 1.5 2001-03-22 21:56:27 florian
  35. * typo fixed
  36. Revision 1.4 2001/03/21 23:32:13 florian
  37. + header and log added
  38. }