mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 20:08:12 +02:00
19 lines
186 B
ObjectPascal
19 lines
186 B
ObjectPascal
unit tinline4;
|
|
|
|
{$inline on}
|
|
|
|
interface
|
|
|
|
uses uinline4b;
|
|
|
|
procedure acall(a,b: longint); inline;
|
|
|
|
implementation
|
|
|
|
procedure acall(a,b: longint); inline;
|
|
begin
|
|
libbase:=nil;
|
|
end;
|
|
|
|
end.
|