+ added a dummy test rtl function that takes parameters and returns a result

git-svn-id: branches/wasm@46712 -
This commit is contained in:
nickysn 2020-08-26 23:03:45 +00:00
parent 76f1b8cf60
commit 893e08489d

View File

@ -12,10 +12,17 @@ type
procedure fpc_lib_exit; compilerproc;
function test_rtl_function(a, b: integer): integer;
implementation
procedure fpc_lib_exit; compilerproc;
begin
end;
function test_rtl_function(a, b: integer): integer;
begin
test_rtl_function := 0;
end;
end.