Browse Source

+ implemented CheckInitialStkLen for the WASI target (just returns the parameter
stklen as a result value, unmodified)

Nikolay Nikolov 1 year ago
parent
commit
e579da0844
1 changed files with 1 additions and 0 deletions
  1. 1 0
      rtl/wasi/system.pp

+ 1 - 0
rtl/wasi/system.pp

@@ -423,6 +423,7 @@ end;
 
 function CheckInitialStkLen(stklen : SizeUInt) : SizeUInt;
 begin
+  result := stklen;
 end;
 
 begin