summaryrefslogtreecommitdiffstats
path: root/src/include/sys/times.h
blob: 68d5bfb271070f80fae740e1aa8edcb267b4c1b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _TIMES_H
#define _TIMES_H

#include <sys/types.h>

struct tms {
	time_t tms_utime;
	time_t tms_stime;
	time_t tms_cutime;
	time_t tms_cstime;
};

extern time_t times(struct tms * tp);

#endif