mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 17:28:05 +02:00
30 lines
365 B
ObjectPascal
30 lines
365 B
ObjectPascal
{ %norun }
|
|
|
|
unit tw9076;
|
|
|
|
{$mode objfpc}
|
|
|
|
interface
|
|
|
|
type
|
|
pfdset = pointer;
|
|
|
|
function __Select(N: Longint; ReadFds: PFDSet; WriteFds: PFDSet;
|
|
ExceptFds: PFDSet): Longint; inline;
|
|
|
|
implementation
|
|
|
|
function __Select(N: Longint; ReadFds: PFDSet; WriteFds: PFDSet;
|
|
ExceptFds: PFDSet): Longint;
|
|
begin
|
|
try
|
|
result := 2
|
|
except
|
|
Result := -1
|
|
end
|
|
end;
|
|
|
|
end.
|
|
|
|
|