mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-18 03:41:34 +02:00
18 lines
234 B
ObjectPascal
18 lines
234 B
ObjectPascal
unit tbf0127;
|
|
|
|
interface
|
|
|
|
procedure x(l : longint);
|
|
|
|
implementation
|
|
|
|
procedure crash;
|
|
|
|
begin
|
|
x(1234); { called with pascal calling conventions }
|
|
end;
|
|
|
|
procedure x(l : longint);external;cdecl;
|
|
|
|
end.
|