OSDN Git Service

* acinclude.m4 (LIBGFOR_CHECK_ATTRIBUTE_VISIBILITY): New.
[pf3gnuchains/gcc-fork.git] / libgfortran / intrinsics / system.c
1 /* Implementation of the SYSTEM intrinsic.
2    Copyright (C) 2004 Free Software Foundation, Inc.
3    Contributed by Tobias Schlüter.
4
5 This file is part of GCC.
6
7 GCC 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
10 version.
11
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
19 executable.)
20
21 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
22 WARRANTY; without even the implied warranty of MERCHANTABILITY or
23 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
24 for more details.
25
26 You should have received a copy of the GNU General Public License
27 along with GCC; see the file COPYING.  If not, write to the Free
28 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
29 02111-1307, USA.  */
30
31 #include "config.h"
32
33 #ifdef HAVE_STRING_H
34 #include <string.h>
35 #endif
36 #ifdef HAVE_STDLIB_H
37 #include <stdlib.h>
38 #endif
39
40 #include "libgfortran.h"
41
42 extern void system_sub (const char *fcmd, GFC_INTEGER_4 * status,
43                         gfc_charlen_type cmd_len);
44 iexport_proto(system_sub);
45
46 void
47 system_sub (const char *fcmd, GFC_INTEGER_4 *status, gfc_charlen_type cmd_len)
48 {
49   char cmd[cmd_len + 1];
50   int stat;
51
52   memcpy (cmd, fcmd, cmd_len);
53   cmd[cmd_len] = '\0';
54
55   stat = system (cmd);
56   if (status)
57     *status = stat;
58 }
59 iexport(system_sub);
60
61 extern GFC_INTEGER_4 PREFIX(system) (const char *, gfc_charlen_type);
62 export_proto_np(PREFIX(system));
63
64 GFC_INTEGER_4
65 PREFIX(system) (const char *fcmd, gfc_charlen_type cmd_len)
66 {
67   GFC_INTEGER_4 stat;
68   system_sub (fcmd, &stat, cmd_len);
69   return stat;
70 }