diff options
Diffstat (limited to 'libgfortran/intrinsics/stat.c')
-rw-r--r-- | libgfortran/intrinsics/stat.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/libgfortran/intrinsics/stat.c b/libgfortran/intrinsics/stat.c index 9bca80fad15..ccdba1ba2eb 100644 --- a/libgfortran/intrinsics/stat.c +++ b/libgfortran/intrinsics/stat.c @@ -1,5 +1,5 @@ /* Implementation of the STAT and FSTAT intrinsics. - Copyright (C) 2004, 2005, 2006 Free Software Foundation, Inc. + Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation, Inc. Contributed by Steven G. Kargl <kargls@comcast.net>. This file is part of the GNU Fortran 95 runtime library (libgfortran). @@ -28,9 +28,11 @@ License along with libgfortran; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#include "config.h" #include "libgfortran.h" +#include <string.h> +#include <errno.h> + #ifdef HAVE_SYS_STAT_H #include <sys/stat.h> #endif @@ -39,12 +41,6 @@ Boston, MA 02110-1301, USA. */ #include <stdlib.h> #endif -#ifdef HAVE_STRING_H -#include <string.h> -#endif - -#include <errno.h> - #ifdef HAVE_STAT |