mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 12:18:30 +02:00
18 lines
328 B
ObjectPascal
18 lines
328 B
ObjectPascal
{ %TARGET=linux,freebsd,darwin,solaris,aix,haiku }
|
|
|
|
{$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.
|