diff options
author | haubi <haubi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-12-16 17:14:49 +0000 |
---|---|---|
committer | haubi <haubi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-12-16 17:14:49 +0000 |
commit | 5df86efa2d5369dae06da5196639f577d8e43469 (patch) | |
tree | 904f1d99e59c751e8d75581801f96ecce138c680 /gcc/sreal.c | |
parent | f604b2e0cbf68a2b727e7caa8081657dbadbfb31 (diff) | |
download | gcc-5df86efa2d5369dae06da5196639f577d8e43469.tar.gz |
Both config.h and system.h define ABI/API macros for system headers.
* sreal.c: Include math.h later.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@218783 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/sreal.c')
-rw-r--r-- | gcc/sreal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/sreal.c b/gcc/sreal.c index 11ea9cedc56..85253793650 100644 --- a/gcc/sreal.c +++ b/gcc/sreal.c @@ -47,9 +47,9 @@ along with GCC; see the file COPYING3. If not see sig == 0 && exp == -SREAL_MAX_EXP */ -#include <math.h> #include "config.h" #include "system.h" +#include <math.h> #include "coretypes.h" #include "sreal.h" |