Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.2.0 / packages / libc / src / btimeh.inc
Size: Mime:

const
   CLOCKS_PER_SEC = 1000000;

function __sysconf(_para1:longint):longint;cdecl;external clib name '__sysconf';
function CLK_TCK : __clock_t;

const
   CLOCK_REALTIME = 0;
   CLOCK_PROCESS_CPUTIME_ID = 2;
   CLOCK_THREAD_CPUTIME_ID = 3;
   TIMER_ABSTIME = 1;

const
   _STRUCT_TIMEVAL = 1;

type
   Ptimeval = ^timeval;
   timeval = record
        tv_sec : __time_t;
        tv_usec : __suseconds_t;
     end;



{ ---------------------------------------------------------------------
    Borland compatibility types
  ---------------------------------------------------------------------}

Type
  TTimeVal = timeval;