diff options
Diffstat (limited to 'libgfortran/intrinsics/system.c')
-rw-r--r-- | libgfortran/intrinsics/system.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/libgfortran/intrinsics/system.c b/libgfortran/intrinsics/system.c index 49a5ba2..5b8ebab 100644 --- a/libgfortran/intrinsics/system.c +++ b/libgfortran/intrinsics/system.c @@ -1,5 +1,5 @@ /* Implementation of the SYSTEM intrinsic. - Copyright (C) 2004 Free Software Foundation, Inc. + Copyright (C) 2004, 2007 Free Software Foundation, Inc. Contributed by Tobias Schlüter. This file is part of the GNU Fortran 95 runtime library (libgfortran). @@ -28,17 +28,13 @@ along with libgfortran; see the file COPYING. If not, write to the Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#include "config.h" - -#ifdef HAVE_STRING_H +#include "libgfortran.h" #include <string.h> -#endif + #ifdef HAVE_STDLIB_H #include <stdlib.h> #endif -#include "libgfortran.h" - extern void system_sub (const char *fcmd, GFC_INTEGER_4 * status, gfc_charlen_type cmd_len); iexport_proto(system_sub); |