2012-04-04 Tristan Gingold <gingold@adacore.com>
* libgfortran.h: Include complex.h before math.h
From-SVN: r186131
+2012-04-04 Tristan Gingold <gingold@adacore.com>
+
+ * libgfortran.h: Include complex.h before math.h
+
2012-04-02 Tristan Gingold <gingold@adacore.com>
* configure.ac: Use new version of GCC_CHECK_MATH_FUNC.
#include "config.h"
#include <stdio.h>
-#include <math.h>
#include <stddef.h>
#include <float.h>
#include <stdarg.h>
+#if HAVE_COMPLEX_H
+/* Must appear before math.h on VMS systems. */
+# include <complex.h>
+#else
+#define complex __complex__
+#endif
+
+#include <math.h>
+
/* If we're support quad-precision floating-point type, include the
header to our support library. */
#ifdef HAVE_FLOAT128
#define gfc_strtold strtold
#endif
-#if HAVE_COMPLEX_H
-# include <complex.h>
-#else
-#define complex __complex__
-#endif
-
#include "../gcc/fortran/libgfortran.h"
#include "c99_protos.h"