aboutsummaryrefslogtreecommitdiff
path: root/gcc/system.h
diff options
context:
space:
mode:
author(no author) <(no author)@138bc75d-0d04-0410-961f-82ee72b054a4>1999-07-26 06:43:09 +0000
committer(no author) <(no author)@138bc75d-0d04-0410-961f-82ee72b054a4>1999-07-26 06:43:09 +0000
commit4949771e1c38a86e7b4fa91487390a00df8adf60 (patch)
tree47b48eafc8ecc77290c6dfcd1e6a5138e58e3e2f /gcc/system.h
parent27bc6aeec64466281eb2cb1437b80a8182027d8b (diff)
This commit was manufactured by cvs2svn to create taggcc-2_95_test
'gcc-2_95_test'. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/tags/gcc-2_95_test@28256 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/system.h')
-rw-r--r--gcc/system.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/gcc/system.h b/gcc/system.h
index 3ec73a6cab1..93ba4c3a365 100644
--- a/gcc/system.h
+++ b/gcc/system.h
@@ -249,6 +249,9 @@ extern int errno;
#ifndef WEXITSTATUS
#define WEXITSTATUS(S) (((S) & 0xff00) >> 8)
#endif
+#ifndef WSTOPSIG
+#define WSTOPSIG WEXITSTATUS
+#endif
@@ -330,6 +333,10 @@ extern char *getwd ();
extern char *sbrk ();
#endif
+#ifdef NEED_DECLARATION_STRSTR
+extern char *strstr ();
+#endif
+
#ifdef HAVE_STRERROR
# ifdef NEED_DECLARATION_STRERROR
# ifndef strerror
@@ -391,8 +398,8 @@ extern void fatal PVPROTO((const char *, ...)) ATTRIBUTE_PRINTF_1 ATTRIBUTE_NORE
trim_filename (__FILE__), __LINE__)
#else
#define abort() fatal ("Internal compiler error in `%s', at %s:%d\n" \
- "Please submit a full bug report to `egcs-bugs@egcs.cygnus.com'.\n" \
- "See <URL:http://egcs.cygnus.com/faq.html#bugreport> for details.", \
+ "Please submit a full bug report.\n" \
+ "See <URL:http://egcs.cygnus.com/faq.html#bugreport> for instructions.", \
__PRETTY_FUNCTION__, trim_filename (__FILE__), __LINE__)
#endif /* recent gcc */