tms32
struct tms32 tms32;
if (Pread(Proc, &tms32, sizeof (tms32), offset)
!= sizeof (tms32))
tms.tms_utime = (unsigned)tms32.tms_utime;
tms.tms_stime = (unsigned)tms32.tms_stime;
tms.tms_cutime = (unsigned)tms32.tms_cutime;
tms.tms_cstime = (unsigned)tms32.tms_cstime;
extern clock32_t times32(struct tms32 *);
times32(struct tms32 *tp)
struct tms32 p_time;