mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-22 19:29:24 +02:00
* new bug
This commit is contained in:
parent
0fa8bff988
commit
96bff0fccb
24
tests/webtbs/tw2876.pp
Normal file
24
tests/webtbs/tw2876.pp
Normal file
@ -0,0 +1,24 @@
|
||||
{ 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
|
||||
end.
|
Loading…
Reference in New Issue
Block a user