mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 08:09:33 +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;
|
||||
|
||||
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.
|
||||
|
Loading…
Reference in New Issue
Block a user