Browse Source

* new bug

florian 21 years ago
parent
commit
96bff0fccb
1 changed files with 24 additions and 0 deletions
  1. 24 0
      tests/webtbs/tw2876.pp

+ 24 - 0
tests/webtbs/tw2876.pp

@@ -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.