]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgfortran/runtime/stop.c
re PR libfortran/19280 (Inconsistent licensing of libgfortran)
[thirdparty/gcc.git] / libgfortran / runtime / stop.c
CommitLineData
6de9cd9a
DN
1/* Implementation of the STOP statement.
2 Copyright 2002 Free Software Foundation, Inc.
3 Contributed by Paul Brook <paul@nowt.org>
4
57dea9f6 5This file is part of the GNU Fortran 95 runtime library (libgfortran).
6de9cd9a 6
57dea9f6
TM
7Libgfortran is free software; you can redistribute it and/or
8modify it under the terms of the GNU General Public
6de9cd9a 9License as published by the Free Software Foundation; either
57dea9f6 10version 2 of the License, or (at your option) any later version.
6de9cd9a 11
57dea9f6
TM
12In addition to the permissions in the GNU General Public License, the
13Free Software Foundation gives you unlimited permission to link the
14compiled version of this file into combinations with other programs,
15and to distribute those combinations without any restriction coming
16from the use of this file. (The General Public License restrictions
17do apply in other respects; for example, they cover modification of
18the file, and distribution when not linked into a combine
19executable.)
20
21Libgfortran is distributed in the hope that it will be useful,
6de9cd9a
DN
22but WITHOUT ANY WARRANTY; without even the implied warranty of
23MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
57dea9f6 24GNU General Public License for more details.
6de9cd9a 25
57dea9f6
TM
26You should have received a copy of the GNU General Public
27License along with libgfortran; see the file COPYING. If not,
6de9cd9a
DN
28write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
29Boston, MA 02111-1307, USA. */
30
31#include "config.h"
32#include <string.h>
33
34#include "libgfortran.h"
35
6de9cd9a
DN
36/* A numeric or blank STOP statement. */
37void
38stop_numeric (GFC_INTEGER_4 code)
39{
40 show_locus ();
41
42 if (code == -1)
43 st_printf ("STOP\n");
44 else
45 st_printf ("STOP %d\n", (int)code);
46
47 sys_exit (code);
48}
7d7b8bfe
RH
49iexport(stop_numeric);
50
6de9cd9a 51
7d7b8bfe
RH
52extern void stop_string (const char *string, GFC_INTEGER_4 len);
53export_proto(stop_string);
6de9cd9a
DN
54
55void
56stop_string (const char *string, GFC_INTEGER_4 len)
57{
58 show_locus ();
59
60 st_printf ("STOP ");
61 while (len--)
62 st_printf ("%c", *(string++));
63 st_printf ("\n");
64
65 sys_exit (0);
66}