mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:38:14 +02:00
12 lines
343 B
ObjectPascal
12 lines
343 B
ObjectPascal
{ %TARGET=win64 }
|
|
uses
|
|
Windows;
|
|
|
|
{ The STD_xxx_HANDLE constants remain 32-bit in 64-bit Windows. }
|
|
{$warnings off} // unreachable code warnings when things are correct.
|
|
begin
|
|
if STD_INPUT_HANDLE > High(DWORD) then Halt(1);
|
|
if STD_OUTPUT_HANDLE > High(DWORD) then Halt(2);
|
|
if STD_ERROR_HANDLE > High(DWORD) then Halt(3);
|
|
Halt(0);
|
|
end. |