timesh.inc 545 B

12345678910111213141516171819202122
  1. type
  2. Ptms = ^tms;
  3. tms = record
  4. tms_utime : clock_t;
  5. tms_stime : clock_t;
  6. tms_cutime : clock_t;
  7. tms_cstime : clock_t;
  8. end;
  9. function times(__buffer:Ptms):clock_t;cdecl;external clib name 'times';
  10. { ---------------------------------------------------------------------
  11. Borland compatibility types
  12. ---------------------------------------------------------------------}
  13. Type
  14. TTimes = tms;
  15. PTimes = ^TTimes;
  16. function times(var __buffer:tms):clock_t;cdecl;external clib name 'times';