make malloc(0) return unique pointers rather than NULL
authorRich Felker <dalias@aerifal.cx>
Sun, 20 Feb 2011 21:16:33 +0000 (16:16 -0500)
committerRich Felker <dalias@aerifal.cx>
Sun, 20 Feb 2011 21:16:33 +0000 (16:16 -0500)
commit26031da0f83a2a3ed52190077931ee6c18dfd689
treef1cefeef545766d941e9f0fe1377e9db46ce8aad
parent598a0147cde14d093d17b81c102a1757b5ef9975
make malloc(0) return unique pointers rather than NULL

this change is made with some reluctance, but i think it's for the
best. correct programs must handle either behavior, so there is little
advantage to having malloc(0) return NULL. and i managed to actually
make the malloc code slightly smaller with this change.
src/malloc/__simple_malloc.c
src/malloc/malloc.c