Index: rsc/source/rscpp/cpp3.c =================================================================== RCS file: /cvs/oo/tools/rsc/source/rscpp/cpp3.c,v retrieving revision 1.3 diff -u -r1.3 cpp3.c --- rsc/source/rscpp/cpp3.c 2000/10/15 16:28:38 1.3 +++ rsc/source/rscpp/cpp3.c 2001/06/26 05:03:11 @@ -79,7 +79,11 @@ #if defined(DEBUG) && (HOST == SYS_VMS || HOST == SYS_UNIX) #include -extern int abort(); /* For debugging */ +#ifdef IRIX +extern void abort(void); /* For debugging */ +#else +extern int abort(); /* For debugging */ +#endif #endif void InitCpp3()