rc/unixcrap.c resource limit can be larger than int
Issue #132
new
Resource limits can be larger than int. Thus it would be better to use long long or rlim_t instead of int for n and limit in execulimit(), and thus %lld in print
Currently if rlim_t is larger than int, ulimited values can be improperly handled. After applying changes above there won't be a problem.