summaryrefslogtreecommitdiff
path: root/libf2c/libF77/s_stop.c
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1998-02-01 01:37:08 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1998-02-01 01:37:08 +0000
commita9fe81af3b8d02e1529b3f1f2a679b93cd9c36e1 (patch)
tree4b30cdf598ee6a8b24903fba52bb3e0c06bf459b /libf2c/libF77/s_stop.c
parent9682c2b47acc059592d168a09c7162f2bf333ee2 (diff)
downloadgcc-a9fe81af3b8d02e1529b3f1f2a679b93cd9c36e1.tar.gz
* Previous contents of gcc/f/runtime moved into toplevel
"libf2c" directory. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@17568 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libf2c/libF77/s_stop.c')
-rw-r--r--libf2c/libF77/s_stop.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/libf2c/libF77/s_stop.c b/libf2c/libF77/s_stop.c
new file mode 100644
index 00000000000..2e3f1035b30
--- /dev/null
+++ b/libf2c/libF77/s_stop.c
@@ -0,0 +1,37 @@
+#include <stdio.h>
+#include "f2c.h"
+
+#ifdef KR_headers
+extern void f_exit();
+VOID s_stop(s, n) char *s; ftnlen n;
+#else
+#undef abs
+#undef min
+#undef max
+#include <stdlib.h>
+#ifdef __cplusplus
+extern "C" {
+#endif
+void f_exit(void);
+
+int s_stop(char *s, ftnlen n)
+#endif
+{
+int i;
+
+if(n > 0)
+ {
+ fprintf(stderr, "STOP ");
+ for(i = 0; i<n ; ++i)
+ putc(*s++, stderr);
+ fprintf(stderr, " statement executed\n");
+ }
+#ifdef NO_ONEXIT
+f_exit();
+#endif
+exit(0);
+#ifdef __cplusplus
+return 0; /* NOT REACHED */
+}
+#endif
+}