From e6a337774935283611448c70548edc871ac06772 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Wed, 22 Feb 2006 02:04:31 +0000 Subject: update malloc(0) check to handle expected behavior based upon config options --- test/malloc/tst-malloc.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'test') diff --git a/test/malloc/tst-malloc.c b/test/malloc/tst-malloc.c index d555ae46e..468e1d4ba 100644 --- a/test/malloc/tst-malloc.c +++ b/test/malloc/tst-malloc.c @@ -20,6 +20,7 @@ #include #include #include +#include static int errors = 0; @@ -57,7 +58,11 @@ main (void) merror ("realloc (p, 0) failed."); p = malloc (0); +#if !defined(__UCLIBC__) || defined(__MALLOC_GLIBC_COMPAT__) if (p == NULL) +#else + if (p != NULL) +#endif merror ("malloc (0) failed."); p = realloc (p, 0); -- cgit v1.2.3