exception.cc (abort): added static modifier

2002-04-05  Adam Megacz <adam@xwt.org>

    * exception.cc (abort): added static modifier

From-SVN: r51937
This commit is contained in:
Adam Megacz 2002-04-06 04:19:10 +00:00
parent 5f9fb0e305
commit c950ddc382

View File

@ -23,7 +23,8 @@ details. */
// stdlib.h's abort().
namespace std
{
__attribute__ ((__noreturn__)) void abort ()
static __attribute__ ((__noreturn__)) void
abort ()
{
::abort ();
}