]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgfortran/intrinsics/abort.c
Update copyright years.
[thirdparty/gcc.git] / libgfortran / intrinsics / abort.c
CommitLineData
4ee9c684 1/* Implementation of the ABORT intrinsic.
fbd26352 2 Copyright (C) 2003-2019 Free Software Foundation, Inc.
4ee9c684 3
4This file is part of the GNU Fortran 95 runtime library (libgfortran).
5
b417ea8c 6Libgfortran is free software; you can redistribute it and/or
7modify it under the terms of the GNU General Public
4ee9c684 8License as published by the Free Software Foundation; either
6bc9506f 9version 3 of the License, or (at your option) any later version.
b417ea8c 10
11Libgfortran is distributed in the hope that it will be useful,
4ee9c684 12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
b417ea8c 14GNU General Public License for more details.
4ee9c684 15
6bc9506f 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/>. */
4ee9c684 24
2679c0b3 25#include "libgfortran.h"
4ee9c684 26
7b6cb5bd 27void PREFIX(abort) (void);
28export_proto_np(PREFIX(abort));
4ee9c684 29
7b6cb5bd 30void PREFIX(abort) (void)
4ee9c684 31{
b2130263 32 sys_abort ();
4ee9c684 33}