summaryrefslogtreecommitdiff
path: root/rsc/source
diff options
context:
space:
mode:
authorSander Vesik <svesik@openoffice.org>2001-07-13 21:07:49 +0000
committerSander Vesik <svesik@openoffice.org>2001-07-13 21:07:49 +0000
commitf88d35c61ff8d1c0dc8894a66e7e4d13270b26f8 (patch)
tree0e5048f01434f09410c9c732966d6a41f53f8e16 /rsc/source
parentaeec392b6509afb26ce7c830a954f1ce809efb87 (diff)
Use a different deifinition of abort for IRIX
Contributed by: The SGI OpenOffice.org porting team
Diffstat (limited to 'rsc/source')
-rw-r--r--rsc/source/rscpp/cpp3.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/rsc/source/rscpp/cpp3.c b/rsc/source/rscpp/cpp3.c
index a831daf5e3ea..25d8e7f0fad5 100644
--- a/rsc/source/rscpp/cpp3.c
+++ b/rsc/source/rscpp/cpp3.c
@@ -2,9 +2,9 @@
*
* $RCSfile: cpp3.c,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: nf $ $Date: 2001-04-18 10:31:56 $
+ * last change: $Author: svesik $ $Date: 2001-07-13 22:07:49 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -79,7 +79,11 @@ int AddInclude( char *pIncStr ); /* BP, 11.09.91, Forward-Deklaration */
#if defined(DEBUG) && (HOST == SYS_VMS || HOST == SYS_UNIX)
#include <signal.h>
+#ifdef IRIX
extern int abort(); /* For debugging */
+#else
+extern int abort(); /* For debugging */
+#endif
#endif
void InitCpp3()