From: Eric Andersen Date: Thu, 23 Jan 2003 09:06:36 +0000 (-0000) Subject: Kill the needless '#if 1' X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=a5ccd4df72ddc8a76ee662de645ca85d0d30052f;p=uclinux-h8%2Fuclibc-ng.git Kill the needless '#if 1' --- diff --git a/libc/stdlib/malloc-930716/malloc.c b/libc/stdlib/malloc-930716/malloc.c index db93311a2..2467da41c 100644 --- a/libc/stdlib/malloc-930716/malloc.c +++ b/libc/stdlib/malloc-930716/malloc.c @@ -160,11 +160,9 @@ void * __malloc_unlocked (size_t size) size_t log, block, blocks, i, lastblocks, start; struct list *next; -#if 1 /* Some programs will call malloc (0). Lets be strict and return NULL */ if (size == 0) return NULL; -#endif if (size < sizeof (struct list)) size = sizeof (struct list);