]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgfortran/intrinsics/abort.c
Update copyright years.
[thirdparty/gcc.git] / libgfortran / intrinsics / abort.c
CommitLineData
6de9cd9a 1/* Implementation of the ABORT intrinsic.
99dee823 2 Copyright (C) 2003-2021 Free Software Foundation, Inc.
6de9cd9a
DN
3
4This file is part of the GNU Fortran 95 runtime library (libgfortran).
5
57dea9f6
TM
6Libgfortran is free software; you can redistribute it and/or
7modify it under the terms of the GNU General Public
6de9cd9a 8License as published by the Free Software Foundation; either
748086b7 9version 3 of the License, or (at your option) any later version.
57dea9f6
TM
10
11Libgfortran is distributed in the hope that it will be useful,
6de9cd9a
DN
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
57dea9f6 14GNU General Public License for more details.
6de9cd9a 15
748086b7
JJ
16Under Section 7 of GPL version 3, you are granted additional
17permissions described in the GCC Runtime Library Exception, version
183.1, as published by the Free Software Foundation.
19
20You should have received a copy of the GNU General Public License and
21a copy of the GCC Runtime Library Exception along with this program;
22see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23<http://www.gnu.org/licenses/>. */
6de9cd9a 24
830219ee 25#include "libgfortran.h"
6de9cd9a 26
7d7b8bfe
RH
27void PREFIX(abort) (void);
28export_proto_np(PREFIX(abort));
6de9cd9a 29
7d7b8bfe 30void PREFIX(abort) (void)
6de9cd9a 31{
de8bd142 32 sys_abort ();
6de9cd9a 33}