mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 05:48:50 +02:00
11 lines
106 B
ObjectPascal
11 lines
106 B
ObjectPascal
{$ifdef unix}
|
|
uses
|
|
cthreads;
|
|
{$endif}
|
|
|
|
begin
|
|
if IsMultiThread then
|
|
halt(1);
|
|
Writeln('ok');
|
|
end.
|