From: Colin Ian King <colin.king@xxxxxxxxxxxxx>
Fix incomplete type build error on struct rlimit by including
<sys/resource.h>, fixes:
test_lru_map.c:552:9: error: variable ârâ has initializer
but incomplete type
struct rlimit r = {RLIM_INFINITY, RLIM_INFINITY};
^
test_lru_map.c:552:21: error: âRLIM_INFINITYâ undeclared
(first use in this function)
struct rlimit r = {RLIM_INFINITY, RLIM_INFINITY};
Signed-off-by: Colin Ian King <colin.king@xxxxxxxxxxxxx>