mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-14 07:09:23 +02:00
+ added a dummy test rtl function that takes parameters and returns a result
git-svn-id: branches/wasm@46712 -
This commit is contained in:
parent
76f1b8cf60
commit
893e08489d
@ -12,10 +12,17 @@ type
|
|||||||
|
|
||||||
procedure fpc_lib_exit; compilerproc;
|
procedure fpc_lib_exit; compilerproc;
|
||||||
|
|
||||||
|
function test_rtl_function(a, b: integer): integer;
|
||||||
|
|
||||||
implementation
|
implementation
|
||||||
|
|
||||||
procedure fpc_lib_exit; compilerproc;
|
procedure fpc_lib_exit; compilerproc;
|
||||||
begin
|
begin
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
function test_rtl_function(a, b: integer): integer;
|
||||||
|
begin
|
||||||
|
test_rtl_function := 0;
|
||||||
|
end;
|
||||||
|
|
||||||
end.
|
end.
|
||||||
|
Loading…
Reference in New Issue
Block a user