aboutsummaryrefslogtreecommitdiff
path: root/win32/sys/resource.h
blob: 3220d811234956bbb46daec5382549b999842844 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef _SYS_RESOURCE_H
#define _SYS_RESOURCE_H 1

#include <time.h>

struct rusage {
	struct timeval ru_utime;
	struct timeval ru_stime;
};

#endif