in sysconf, use getrlimit function rather than raw syscall for rlimits
authorRich Felker <dalias@aerifal.cx>
Tue, 15 Apr 2014 22:05:30 +0000 (18:05 -0400)
committerRich Felker <dalias@aerifal.cx>
Tue, 15 Apr 2014 22:05:30 +0000 (18:05 -0400)
commit6cf7d17f5349df9ee4a2d8c8c7c5d01c18385e08
treef5ff141f683c0c7d987a4137c439512725c91dad
parent233767b48a083f526557ee39aa1c773efa345972
in sysconf, use getrlimit function rather than raw syscall for rlimits

the syscall is deprecated (replaced by prlimit64) and does not work
correctly on x32. this change mildly increases size, but is likely
needed anyway for newer archs that might omit deprecated syscalls.
src/conf/sysconf.c