summaryrefslogtreecommitdiff
path: root/src/sys/resource/struct_rlimit.h
blob: b0169e1e98803e2c1092cbaa35d47ab99faa9782 (plain)
1
2
3
4
5
6
7
8
9
10
#include <sys/resource.h>

struct rlimit {
	rlim_t rlim_cur;
	rlim_t rlim_max;
};

/*
XOPEN(400)
*/