do not interpret errors in return value of times() syscall
authorRich Felker <dalias@aerifal.cx>
Sun, 5 May 2013 18:19:37 +0000 (14:19 -0400)
committerRich Felker <dalias@aerifal.cx>
Sun, 5 May 2013 18:19:37 +0000 (14:19 -0400)
commit9293b765c4449c13fe355bcfcac1934fe3426847
tree5f843587afc4c28bf3f1e9dd15ebf4f3e55c7217
parent2c074b0d6cb2b28c5d1c0ccb2809965f4676efeb
do not interpret errors in return value of times() syscall

all return values are valid, and on 32-bit systems, values that look
like errors can and will occur. since the only actual error this
function could return is EFAULT, and it is only returnable when the
application has invoked undefined behavior, simply ignore the
possibility that the return value is actually an error code.
src/time/times.c