From fc6389aa6a03de5c88ea89a75f0992e65f7c4dc8 Mon Sep 17 00:00:00 2001 From: "\"Steven J. Hill\"" Date: Fri, 17 Mar 2006 03:00:05 +0000 Subject: Fix 'realloc' and revert previous changes to tests. malloc tests all pass regardless of the setting of MALLOC_GLIBC_COMPAT. --- test/malloc/malloc.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'test/malloc/malloc.c') diff --git a/test/malloc/malloc.c b/test/malloc/malloc.c index b35e329c0..d63856845 100644 --- a/test/malloc/malloc.c +++ b/test/malloc/malloc.c @@ -70,11 +70,7 @@ int test2(void) ptr = malloc(100); ptr = realloc(ptr, 0); -#ifdef __MALLOC_GLIBC_COMPAT__ - if (!ptr) { -#else if (ptr) { -#endif printf("realloc(,0) failed\n"); ++ret; free(ptr); -- cgit v1.2.3