From: bernhardheld Date: Thu, 6 Mar 2003 14:27:33 +0000 (+0000) Subject: PORT_HOST instead of HOST X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=181db9c2fe1d654ae393477a04d2d95828ae66fa;p=fw%2Fsdcc PORT_HOST instead of HOST git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@2337 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/support/regression/tests/malloc.c b/support/regression/tests/malloc.c index 91656c4c..9d91a857 100644 --- a/support/regression/tests/malloc.c +++ b/support/regression/tests/malloc.c @@ -23,7 +23,7 @@ testMalloc(void) p1 = malloc(5); ASSERT(p1 != NULL); -#ifdef HOST +#ifdef PORT_HOST LOG(("p1: %p\n", p1)); #else LOG(("p1: %u\n", (unsigned) p1)); @@ -31,7 +31,7 @@ testMalloc(void) p2 = malloc(20); ASSERT(p2 != NULL); -#ifdef HOST +#ifdef PORT_HOST LOG(("p2: %p\n", p2)); #else LOG(("p2: %u\n", (unsigned) p2)); @@ -41,7 +41,7 @@ testMalloc(void) p3 = malloc(10); ASSERT(p3 != NULL); -#ifdef HOST +#ifdef PORT_HOST LOG(("p3, after freeing p2: %p\n", p3)); #else LOG(("p3, after freeing p2: %u\n", (unsigned) p3));