fpc/tests/webtbs/tw16263a.pp
yury 87df3ab325 * Enable more tests for android.
git-svn-id: branches/targetandroid@23404 -
2013-01-16 10:57:51 +00:00

28 lines
419 B
ObjectPascal

{ %norun }
{ %needlibrary }
{ %target=darwin,linux,freebsd,solaris,beos,haiku,aix,android }
{$mode delphi}
{$ifdef darwin}
{$PIC+}
{$endif darwin}
{$ifdef CPUX86_64}
{$ifndef WINDOWS}
{$PIC+}
{$endif WINDOWS}
{$endif CPUX86_64}
library tw16263a;
function divide(d1,d2: double): double; cdecl;
begin
divide:=d1/d2;
end;
begin
// check that the library does not re-enable fpu exceptions
divide(1.0,0.0);
end.