changeset 968:cb24fba154f5

* tests/cxxsupp.cxx: don't include <pkgconf/kernel.h> as it's not needed. (cyg_start): CYGINT_ISO_MALLOC needs a #if test.
author jlarmour
date Fri, 25 Apr 2003 19:56:34 +0000
parents b7df797cbdac
children cc4da808d3e1
files packages/infra/current/ChangeLog packages/infra/current/tests/cxxsupp.cxx
diffstat 2 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/packages/infra/current/ChangeLog
+++ b/packages/infra/current/ChangeLog
@@ -2,6 +2,7 @@ 2003-04-25  Jonathan Larmour  <jifl@eCos
 
 	* tests/cxxsupp.cxx: don't include <pkgconf/kernel.h> as it's not
 	needed.
+	(cyg_start): CYGINT_ISO_MALLOC needs a #if test.
 
 2003-04-10  Nick Garnett  <nickg@balti.calivar.com>
 
--- a/packages/infra/current/tests/cxxsupp.cxx
+++ b/packages/infra/current/tests/cxxsupp.cxx
@@ -138,7 +138,7 @@ cyg_start( void )
     pure->impure_fun1();
     pure->inline_fun1();
 
-#ifdef CYGINT_ISO_MALLOC
+#if CYGINT_ISO_MALLOC
     Derived *derived2 = new Derived(2);
     Pure *pure2 = derived2;