OSDN Git Service

* g++.old-deja/g++.abi/cxa_vec.C: Get malloc() from
authorljrittle <ljrittle@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 2 May 2001 06:55:39 +0000 (06:55 +0000)
committerljrittle <ljrittle@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 2 May 2001 06:55:39 +0000 (06:55 +0000)
<stdlib.h>, not <malloc.h>.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@41756 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 33106b4..e99ee84 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 c08ce75..05c3fcc 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;