mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-28 18:22:36 +02:00
22 lines
545 B
PHP
22 lines
545 B
PHP
|
|
type
|
|
Ptms = ^tms;
|
|
tms = record
|
|
tms_utime : clock_t;
|
|
tms_stime : clock_t;
|
|
tms_cutime : clock_t;
|
|
tms_cstime : clock_t;
|
|
end;
|
|
|
|
function times(__buffer:Ptms):clock_t;cdecl;external clib name 'times';
|
|
|
|
{ ---------------------------------------------------------------------
|
|
Borland compatibility types
|
|
---------------------------------------------------------------------}
|
|
|
|
Type
|
|
TTimes = tms;
|
|
PTimes = ^TTimes;
|
|
|
|
function times(var __buffer:tms):clock_t;cdecl;external clib name 'times';
|
|
|