mirror of
https://github.com/vapaamies/KolibriOS.git
synced 2024-11-09 17:50:30 +01:00
28 lines
463 B
ObjectPascal
28 lines
463 B
ObjectPascal
(*
|
|
KolibriOS RTL SysUtils unit
|
|
|
|
Copyright (c) 2020-2021 Delphi SDK for KolibriOS team
|
|
*)
|
|
|
|
unit SysUtils;
|
|
|
|
interface
|
|
|
|
type
|
|
WordRec = System.WordRec;
|
|
LongRec = System.LongRec;
|
|
Int64Rec = System.Int64Rec;
|
|
|
|
PByteArray = System.PByteArray;
|
|
TByteArray = System.TByteArray;
|
|
|
|
PWordArray = System.PWordArray;
|
|
TWordArray = System.TWordArray;
|
|
|
|
PLongWordArray = System.PLongWordArray;
|
|
TLongWordArray = System.TLongWordArray;
|
|
|
|
implementation
|
|
|
|
end.
|