bunxmain.inc 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. $Id$
  3. Copyright (c) 2002 by Marco van de Voort.
  4. Implementation of the baseunix unit for *BSD^H^H^Hlinux. In practice only
  5. includes other files, or specifies libc bindings.
  6. The conditional uselibc can be used to switch from libc to syscall
  7. usage for basic primitives, but it is best to use unit POSIX if
  8. possible. Note that the system unit must also be compiled using uselibc.
  9. See the file COPYING.FPC, included in this distribution,
  10. for details about the copyright.
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  14. ****************************************************************************
  15. }
  16. { $I ostypes.inc}
  17. {$ifdef uselibc}
  18. {$I oscdeclh.inc}
  19. {$else}
  20. {$I sysdeclh.inc}
  21. {$endif}
  22. {$I bunxfunc.inc}
  23. {$I genfuncs.inc}
  24. {
  25. $Log$
  26. Revision 1.3 2003-06-01 16:28:56 marco
  27. * small rearrangements
  28. Revision 1.2 2003/01/02 22:39:19 marco
  29. * posmacro.inc was still include while it was already moved to bunxmacr.inc
  30. fixed, will remove posmacro.inc shortly
  31. Revision 1.1 2002/12/18 16:43:26 marco
  32. * new unix rtl, linux part.....
  33. Revision 1.1 2002/11/12 14:37:59 marco
  34. * Parts of new unix rtl
  35. }