system.pp 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 1999-2000 by Michael Van Canneyt,
  5. member of the Free Pascal development team.
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. { These things are set in the makefile, }
  13. { But you can override them here.}
  14. { If you use an aout system, set the conditional AOUT}
  15. { $Define AOUT}
  16. Unit {$ifdef VER1_0}Syslinux{$else}System{$endif};
  17. Interface
  18. {$I sysunixh.inc}
  19. Implementation
  20. {$I sysunix.inc}
  21. {
  22. $Log$
  23. Revision 1.1 2000-10-15 08:19:49 peter
  24. * system unit rename for 1.1 branch
  25. Revision 1.7 2000/09/18 13:14:50 marco
  26. * Global Linux +bsd to (rtl/freebsd rtl/unix rtl/linux structure)
  27. Revision 1.6 2000/09/11 13:48:08 marco
  28. * FreeBSD support and removal of old sighandler
  29. Revision 1.5 2000/08/13 08:43:45 peter
  30. * don't check for directory in do_open (merged)
  31. Revision 1.4 2000/08/05 18:33:51 peter
  32. * paramstr(0) fix for linux 2.0 kernels (merged)
  33. Revision 1.3 2000/07/14 10:33:10 michael
  34. + Conditionals fixed
  35. Revision 1.2 2000/07/13 11:33:49 michael
  36. + removed logs
  37. }