for egcs-1.1.1 (gcc 2.91) don't include the terminate() function. there may be previous revisions that don't need this function, but this is the version i have - we can always change the check later.

This commit is contained in:
toshok%hungry.com 1999-11-27 23:17:20 +00:00
parent 46b7c1f2d9
commit c800126fc4

View File

@ -568,7 +568,7 @@ void realMain(void* arg)
MAIN_WRAPPER_RETURN(mainWrapper, 0);
}
#ifdef __GNUC__
#if __GNUC__ < 2 || __GNUC_MINOR__ < 91
// for gcc with -fhandle-exceptions
void terminate() {}
#endif