si_prc.pp 262 B

12345678910111213141516
  1. unit si_prc;
  2. interface
  3. implementation
  4. procedure PascalMain; external name 'PASCALMAIN';
  5. { this function must be the first in this unit which contains code }
  6. function _FPC_proc_start: longint; cdecl; public name '_start';
  7. begin
  8. PascalMain;
  9. end;
  10. begin
  11. end.