anything greater than gcc 2.8 should have terminate already.

This commit is contained in:
toshok%hungry.com 1998-12-11 04:10:21 +00:00
parent a7ad97fa3a
commit 6487ac2934

View File

@ -179,9 +179,7 @@ int main(int argc, char **argv)
return 0;
}
#ifdef __GNUC__
#if defined( __GNUC__ ) && ( __GNUC__ < 2 ) || (__GNUC_MINOR__ < 9)
/* for gcc with -fhandle-exceptions */
void terminate() {}
#endif