fpc/tests/tbs/tb0359.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

19 lines
339 B
ObjectPascal

{ %version=1.1 }
{ %TARGET=linux,freebsd,darwin,solaris,aix }
{$linklib c}
type
tprintfproc=procedure(t:pchar);varargs;cdecl;
procedure printf(t:pchar);varargs;cdecl;external;
var
t : tprintfproc;
begin
printf('Proc test %d %s %lf'#10,1,'test',1234.5678);
t:=@printf;
t('Procvar test %d %s %lf'#10,2,'test',1234.5678);
end.