mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-10-20 11:13:15 +02:00
13 lines
144 B
ObjectPascal
13 lines
144 B
ObjectPascal
USES DOS;
|
|
var
|
|
d : longint;
|
|
BEGIN
|
|
{$I-}
|
|
d:=DISKSIZE(1);
|
|
writeln(d);
|
|
WRITELN(IORESULT);
|
|
{$I+}
|
|
if d<>-1 then
|
|
halt(1);
|
|
END.
|