si_dll.pp 671 B

12345678910111213141516171819202122232425262728
  1. {
  2. This file is part of the Free Pascal run time library.
  3. Copyright (c) 2019 by Free Pascal development team
  4. This file implements the startup code for OpenBSD shared object
  5. (.so) libraries.
  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. unit si_dll;
  13. interface
  14. {$i si_intf.inc}
  15. implementation
  16. {$i si_impl.inc}
  17. {$i si_dll.inc}
  18. end.