summaryrefslogtreecommitdiff
path: root/libgfortran/libgfortran.h
diff options
context:
space:
mode:
authorebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>2004-12-07 23:43:40 +0000
committerebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>2004-12-07 23:43:40 +0000
commit334f03a14c7ab0d59aac53345679b1f9f0c6242b (patch)
tree7397b8cae4794ec49536905235d48066a52a6dc3 /libgfortran/libgfortran.h
parent67225a62085350b09095dd386e8acb6107fed7b4 (diff)
downloadgcc-334f03a14c7ab0d59aac53345679b1f9f0c6242b.tar.gz
* configure.ac: Check for ieeefp.h. Check for fabsf in libm.
* configure: Regenerate. * config.h.in: Likewise. * c99_protos.h: New file. * libgfortran.h: Include c99_protos.h and conditionally ieeefp.h. * intrinsics/c99_functions.c (fabsf): New function. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@91832 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran/libgfortran.h')
-rw-r--r--libgfortran/libgfortran.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libgfortran/libgfortran.h b/libgfortran/libgfortran.h
index 508a5df019c..3732707dca8 100644
--- a/libgfortran/libgfortran.h
+++ b/libgfortran/libgfortran.h
@@ -32,6 +32,7 @@ Boston, MA 02111-1307, USA. */
#endif
#include "config.h"
+#include "c99_protos.h"
#if HAVE_COMPLEX_H
# include <complex.h>
@@ -39,6 +40,10 @@ Boston, MA 02111-1307, USA. */
#define complex __complex__
#endif
+#if HAVE_IEEEFP_H
+#include <ieeefp.h>
+#endif
+
#if HAVE_STDINT_H
#include <stdint.h>
#endif