2001-06-10 Alexandre Petit-Bianco <apbianco@redhat.com>
* exception.cc (cstdlib): Replaces stdlib.h.
(_Jv_Throw): Use std::abort().
(PERSONALITY_FUNCTION): Likewise.
(http://gcc.gnu.org/ml/gcc-patches/2001-06/msg00620.html )
From-SVN: r43153
+2001-06-10 Alexandre Petit-Bianco <apbianco@redhat.com>
+
+ * exception.cc (cstdlib): Replaces stdlib.h.
+ (_Jv_Throw): Use std::abort().
+ (PERSONALITY_FUNCTION): Likewise.
+
2001-06-09 Alexandre Oliva <aoliva@redhat.com>, Stephen L Moshier <moshier@mediaone.net>
* acinclude.m4 (AC_EXEEXT): Work around in case it expands to
#include <config.h>
#include <stddef.h>
-#include <stdlib.h>
+#include <cstdlib>
#include <java/lang/Class.h>
#include <java/lang/NullPointerException.h>
recover. As is the way of such things, almost certainly we will have
crashed before now, rather than actually being able to diagnose the
problem. */
- abort ();
+ std::abort ();
}
\f
// ??? Perhaps better to make them an index into a table
// of null-terminated strings instead of playing games
// with Utf8Const+1 as above.
- abort ();
+ std::abort ();
}
if (ar_disp == 0)