/packages/libc/src/timesh.inc
Pascal | 22 lines | 13 code | 6 blank | 3 comment | 0 complexity | 2e104780556a8d89b77602ceadc1f2d5 MD5 | raw file
Possible License(s): LGPL-2.0, LGPL-2.1, LGPL-3.0
1 2type 3 Ptms = ^tms; 4 tms = record 5 tms_utime : clock_t; 6 tms_stime : clock_t; 7 tms_cutime : clock_t; 8 tms_cstime : clock_t; 9 end; 10 11function times(__buffer:Ptms):clock_t;cdecl;external clib name 'times'; 12 13{ --------------------------------------------------------------------- 14 Borland compatibility types 15 ---------------------------------------------------------------------} 16 17Type 18 TTimes = tms; 19 PTimes = ^TTimes; 20 21function times(var __buffer:tms):clock_t;cdecl;external clib name 'times'; 22