Function GetEpochTime : longint;
returns the number of seconds since 00:00:00 gmt, january 1, 1970. it is adjusted to the local time zone, but not to DST.
no errors
EpochToLocal, GetTime, time (2)
Program Example1; { Program to demonstrate the GetEpochTime function. } Uses linux; begin Write ('Secs past the start of the Epoch (00:00 1/1/1980) : '); Writeln (GetEpochTime); end.