1 /* Implementation of the SYSTEM intrinsic.
2 Copyright (C) 2004, 2007 Free Software Foundation, Inc.
3 Contributed by Tobias Schlüter.
5 This file is part of the GNU Fortran 95 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 2, or (at your option) any later
12 In addition to the permissions in the GNU General Public License, the
13 Free Software Foundation gives you unlimited permission to link the
14 compiled version of this file into combinations with other programs,
15 and to distribute those combinations without any restriction coming
16 from the use of this file. (The General Public License restrictions
17 do apply in other respects; for example, they cover modification of
18 the file, and distribution when not linked into a combined
21 Libgfortran is distributed in the hope that it will be useful, but WITHOUT
22 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
23 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
26 You should have received a copy of the GNU General Public License
27 along with libgfortran; see the file COPYING. If not, write to the Free
28 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
31 #include "libgfortran.h"
38 extern void system_sub (const char *fcmd
, GFC_INTEGER_4
* status
,
39 gfc_charlen_type cmd_len
);
40 iexport_proto(system_sub
);
43 system_sub (const char *fcmd
, GFC_INTEGER_4
*status
, gfc_charlen_type cmd_len
)
45 char cmd
[cmd_len
+ 1];
48 /* Flush all I/O units before executing the command. */
51 memcpy (cmd
, fcmd
, cmd_len
);
60 extern GFC_INTEGER_4
PREFIX(system
) (const char *, gfc_charlen_type
);
61 export_proto_np(PREFIX(system
));
64 PREFIX(system
) (const char *fcmd
, gfc_charlen_type cmd_len
)
67 system_sub (fcmd
, &stat
, cmd_len
);