mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 10:38:16 +02:00
21 lines
258 B
ObjectPascal
21 lines
258 B
ObjectPascal
{ %norun }
|
|
{ %needlibrary }
|
|
{ %target=win32,win64,wince,darwin,linux,freebsd,solaris,beos,aix,android,haiku }
|
|
|
|
library tw16949a;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
function foo: LongInt; cdecl;
|
|
var
|
|
x: LongInt = 12345;
|
|
begin
|
|
Result := x;
|
|
end;
|
|
|
|
exports
|
|
foo;
|
|
|
|
begin
|
|
end.
|