fpc/tests/webtbs/tw9089c.pp
Jonas Maebe 51616b7bd6 * enabled a bunch of tests also for aix
git-svn-id: trunk@20821 -
2012-04-11 18:04:57 +00:00

21 lines
361 B
ObjectPascal

{ %target=win32,win64,wince,darwin,linux,freebsd,solaris,beos,aix }
{ %needlibrary }
program ptest;
{$ifdef fpc}{$mode objfpc}{$H+}{$endif fpc}
const
{$if defined(windows) or defined(mswindows)}
libname='tw9089b.dll';
{$else}
libname='tw9089b';
{$linklib tw9089b}
{$ifend}
function Test: Integer; cdecl; external libname;
begin
Writeln(Test);
end.