mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-18 19:31:35 +02:00
16 lines
297 B
ObjectPascal
16 lines
297 B
ObjectPascal
{ %target=win32,win64 }
|
|
{ %needlibrary }
|
|
|
|
unit
|
|
ulib2b;
|
|
|
|
interface
|
|
{ Checks that the two functions with the same exported name 'p'
|
|
are each loaded correctly. }
|
|
procedure p(var a : dword);external 'tlib1a' name 'p';
|
|
procedure p2(var a : dword);external 'tlib1a2' name 'p';
|
|
|
|
implementation
|
|
|
|
end.
|