system.pp 409 B

12345678910111213141516171819202122232425262728
  1. unit system;
  2. interface
  3. type
  4. integer = longint;
  5. hresult = integer;
  6. ttypekind = integer;
  7. filerec = integer;
  8. textrec = integer;
  9. pbyte = ^byte;
  10. procedure fpc_lib_exit; compilerproc;
  11. function test_rtl_function(a, b: integer): integer;
  12. implementation
  13. procedure fpc_lib_exit; compilerproc;
  14. begin
  15. end;
  16. function test_rtl_function(a, b: integer): integer;
  17. begin
  18. test_rtl_function := 0;
  19. end;
  20. end.