mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 23:28:28 +02:00
26 lines
470 B
ObjectPascal
26 lines
470 B
ObjectPascal
{ Source provided for Free Pascal Bug Report 2876 }
|
|
{ Submitted by "marco (gory bugs department)" on 2004-01-04 }
|
|
{ e-mail: }
|
|
function strtoppchar(const args:array of ansistring):ppchar;
|
|
|
|
begin
|
|
end;
|
|
|
|
function execl (filename:ansistring;const args:array of ansistring):integer;
|
|
|
|
var p:ppchar;
|
|
|
|
begin
|
|
p:=strtoppchar(args);
|
|
end;
|
|
|
|
procedure myexec (filename:ansistring;const args:array of ansistring);
|
|
|
|
begin
|
|
execl(filename,args);
|
|
end;
|
|
|
|
begin
|
|
myexec('',['','']);
|
|
end.
|