mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-17 12:09:16 +02:00
+ dummy intassignpipe for non-i386
git-svn-id: trunk@11791 -
This commit is contained in:
parent
3f5511661a
commit
efe81977e1
@ -84,7 +84,7 @@ begin
|
||||
fpFlock:=do_syscall(syscall_nr_flock,fd,mode);
|
||||
end;
|
||||
|
||||
{$ifndef CPUI386}
|
||||
{$ifdef CPUI386}
|
||||
// needs oldfpccall;
|
||||
Function intAssignPipe(var pipe_in,pipe_out:longint;var errn:cint):cint; oldfpccall;
|
||||
{
|
||||
@ -113,6 +113,11 @@ begin
|
||||
mov %ebx,(%edx)
|
||||
end;
|
||||
end;
|
||||
{$else CPUI386}
|
||||
Function intAssignPipe(var pipe_in,pipe_out:longint;var errn:cint):cint; oldfpccall;
|
||||
begin
|
||||
runerror(217);
|
||||
end;
|
||||
{$endif CPUI386}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user