From 9b8c19b4f52afaace7b003100311a4ebf4180a13 Mon Sep 17 00:00:00 2001 From: Alexandre Petit-Bianco Date: Sun, 10 Jun 2001 13:59:37 -0700 Subject: [PATCH] exception.cc (cstdlib): Replaces stdlib.h. 2001-06-10 Alexandre Petit-Bianco * 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 --- libjava/ChangeLog | 6 ++++++ libjava/exception.cc | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/libjava/ChangeLog b/libjava/ChangeLog index 7e6b8d91be4..af4f26f118d 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,9 @@ +2001-06-10 Alexandre Petit-Bianco + + * exception.cc (cstdlib): Replaces stdlib.h. + (_Jv_Throw): Use std::abort(). + (PERSONALITY_FUNCTION): Likewise. + 2001-06-09 Alexandre Oliva , Stephen L Moshier * acinclude.m4 (AC_EXEEXT): Work around in case it expands to diff --git a/libjava/exception.cc b/libjava/exception.cc index 77e3e91b616..16bbb9fa114 100644 --- a/libjava/exception.cc +++ b/libjava/exception.cc @@ -11,7 +11,7 @@ details. */ #include #include -#include +#include #include #include @@ -100,7 +100,7 @@ _Jv_Throw (jthrowable value) 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 (); } @@ -348,7 +348,7 @@ PERSONALITY_FUNCTION (int version, // ??? 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) -- 2.30.2