#include "customize.h"

#ifdef VAX
struct {long int  proc_user, proc_sys, child_user, child_sys;} time;
long int TickCount()
{times(&time); return(time.proc_user);}
#endif

#ifdef SUN
struct {long int  tms_utime, tms_stime, tms_cutime, tms_cstime;} tmst;
long int TickCount()
{times(&tmst); return(tmst.tms_utime);}
#endif




