compunit.pas 204 B

12345678910111213141516
  1. {
  2. Build file for the compiler units. This is also a unit so
  3. that there will be no linking
  4. }
  5. unit compunit;
  6. interface
  7. uses
  8. ppheap,
  9. compiler,
  10. comphook,
  11. cpuinfo,
  12. browcol;
  13. implementation
  14. end.