cxa_vec.C: Get malloc() from <stdlib.h>, not <malloc.h>.
authorLoren J. Rittle <ljrittle@acm.org>
Wed, 2 May 2001 06:55:39 +0000 (06:55 +0000)
committerLoren J. Rittle <ljrittle@gcc.gnu.org>
Wed, 2 May 2001 06:55:39 +0000 (06:55 +0000)
* g++.old-deja/g++.abi/cxa_vec.C: Get malloc() from
<stdlib.h>, not <malloc.h>.

From-SVN: r41756

gcc/testsuite/ChangeLog
gcc/testsuite/g++.old-deja/g++.abi/cxa_vec.C

index 33106b4009d4b83878e7b6d6823edcd0b36e3717..e99ee8480a7039cde98ffe1b9e062b50b9630ec3 100644 (file)
@@ -1,3 +1,8 @@
+2001-05-01  Loren J. Rittle  <ljrittle@acm.org>
+
+       * g++.old-deja/g++.abi/cxa_vec.C: Get malloc() from
+       <stdlib.h>, not <malloc.h>.
+
 2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
 
        * g++.old-deja/g++.ns/template17.C: New test.
index c08ce75e961ebe1b0712b24a93db4aed442819c7..05c3fcc6e43d0ad74d83a01a46daac2bde06174b 100644 (file)
@@ -6,7 +6,7 @@
 #include <cxxabi.h>
 #include <stdio.h>
 #include <new>
-#include <malloc.h>
+#include <stdlib.h>
 #include <setjmp.h>
 
 static int ctor_count = 0;