summaryrefslogtreecommitdiff
path: root/packages/libc/src/timesh.inc
blob: 7c8fa49195a60100532de8329d6803eece5fdc89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22

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';