2017-12-07 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / libgfortran / intrinsics / system.c
blob8fcb7e74719e42ae792eabcb3e0b167db7d0538d
1 /* Implementation of the SYSTEM intrinsic.
2 Copyright (C) 2004-2017 Free Software Foundation, Inc.
3 Contributed by Tobias Schlüter.
5 This file is part of the GNU Fortran runtime library (libgfortran).
7 Libgfortran is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
12 Libgfortran is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 Under Section 7 of GPL version 3, you are granted additional
18 permissions described in the GCC Runtime Library Exception, version
19 3.1, as published by the Free Software Foundation.
21 You should have received a copy of the GNU General Public License and
22 a copy of the GCC Runtime Library Exception along with this program;
23 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24 <http://www.gnu.org/licenses/>. */
26 #include "libgfortran.h"
28 extern void system_sub (const char *fcmd, GFC_INTEGER_4 * status,
29 gfc_charlen_type cmd_len);
30 iexport_proto(system_sub);
32 void
33 system_sub (const char *fcmd, GFC_INTEGER_4 *status, gfc_charlen_type cmd_len)
35 char *cmd = fc_strdup (fcmd, cmd_len);
36 int stat;
38 /* Flush all I/O units before executing the command. */
39 flush_all_units();
41 stat = system (cmd);
42 free (cmd);
43 if (status)
44 *status = stat;
46 iexport(system_sub);
48 extern GFC_INTEGER_4 PREFIX(system) (const char *, gfc_charlen_type);
49 export_proto_np(PREFIX(system));
51 GFC_INTEGER_4
52 PREFIX(system) (const char *fcmd, gfc_charlen_type cmd_len)
54 GFC_INTEGER_4 stat;
55 system_sub (fcmd, &stat, cmd_len);
56 return stat;