diff options
author | François-Xavier Coudert <fxcoudert@gcc.gnu.org> | 2007-01-21 21:04:53 +0000 |
---|---|---|
committer | François-Xavier Coudert <fxcoudert@gcc.gnu.org> | 2007-01-21 21:04:53 +0000 |
commit | f64acab6abe8755d8939fbcebc305c2af10692a1 (patch) | |
tree | 0e32b9023b9f549b2e9e8d682eeee444be10c17a /libgfortran/runtime | |
parent | bd9431157f40688ff519cc600b66990248f3b068 (diff) | |
download | gcc-f64acab6abe8755d8939fbcebc305c2af10692a1.zip gcc-f64acab6abe8755d8939fbcebc305c2af10692a1.tar.gz gcc-f64acab6abe8755d8939fbcebc305c2af10692a1.tar.bz2 |
* runtime/error.c: Include sys/time.h before sys/resource.h.
From-SVN: r121036
Diffstat (limited to 'libgfortran/runtime')
-rw-r--r-- | libgfortran/runtime/error.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/libgfortran/runtime/error.c b/libgfortran/runtime/error.c index e6713d2..afd6a21 100644 --- a/libgfortran/runtime/error.c +++ b/libgfortran/runtime/error.c @@ -48,14 +48,16 @@ Boston, MA 02110-1301, USA. */ #include <stdlib.h> #endif -#ifdef HAVE_SYS_RESOURCE_H -#include <sys/resource.h> -#endif - #ifdef HAVE_SYS_TIME_H #include <sys/time.h> #endif +/* <sys/time.h> has to be included before <sys/resource.h> to work + around PR 30518; otherwise, MacOS 10.3.9 headers are just broken. */ +#ifdef HAVE_SYS_RESOURCE_H +#include <sys/resource.h> +#endif + #include "libgfortran.h" #ifdef __MINGW32__ |