mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 01:19:35 +02:00
14 lines
113 B
ObjectPascal
14 lines
113 B
ObjectPascal
|
|
{$PACKRECORDS 1}
|
|
|
|
type
|
|
Time = object
|
|
h,m,s:byte;
|
|
end;
|
|
|
|
var OT:Time;
|
|
l : longint;
|
|
begin
|
|
l:=SizeOf(OT);
|
|
end.
|