mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 08:18:12 +02:00
12 lines
123 B
ObjectPascal
12 lines
123 B
ObjectPascal
unit tw21592b;
|
|
|
|
{$MODE DELPHI}
|
|
|
|
interface
|
|
|
|
type TBytesOverlay<T> = array [0..SizeOf(T) - 1] of Byte;
|
|
|
|
implementation
|
|
|
|
end.
|