slightly optimize __brk for size
authorRich Felker <dalias@aerifal.cx>
Sat, 5 Oct 2013 16:00:55 +0000 (12:00 -0400)
committerRich Felker <dalias@aerifal.cx>
Sat, 5 Oct 2013 16:00:55 +0000 (12:00 -0400)
commit8acbe4f81862147af73c05ebb770e2ab4ef5375b
tree6cea7c531f3f0f773d0358a1a98caaf159c35f9e
parenta947d317a2769d90bdb19aa11942b7a0680051d5
slightly optimize __brk for size

there is no reason to check the return value for setting errno, since
brk never returns errors, only the new value of the brk (which may be
the same as the old, or otherwise differ from the requested brk, on
failure).

it may be beneficial to eventually just eliminate this file and make
the syscalls inline in malloc.c.
src/malloc/__brk.c