diff options
Diffstat (limited to 'src/floatfns.c')
| -rw-r--r-- | src/floatfns.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/floatfns.c b/src/floatfns.c index 11cf657f105..29bdccf2989 100644 --- a/src/floatfns.c +++ b/src/floatfns.c | |||
| @@ -47,15 +47,17 @@ Boston, MA 02111-1307, USA. */ | |||
| 47 | #include <signal.h> | 47 | #include <signal.h> |
| 48 | 48 | ||
| 49 | #include <config.h> | 49 | #include <config.h> |
| 50 | #include "lisp.h" | ||
| 51 | #include "syssignal.h" | ||
| 52 | |||
| 53 | #ifdef LISP_FLOAT_TYPE | ||
| 54 | 50 | ||
| 51 | /* Put this before lisp.h so that lisp.h can define DBL_DIG if not defined. */ | ||
| 55 | #if STDC_HEADERS | 52 | #if STDC_HEADERS |
| 56 | #include <float.h> | 53 | #include <float.h> |
| 57 | #endif | 54 | #endif |
| 58 | 55 | ||
| 56 | #include "lisp.h" | ||
| 57 | #include "syssignal.h" | ||
| 58 | |||
| 59 | #ifdef LISP_FLOAT_TYPE | ||
| 60 | |||
| 59 | /* If IEEE_FLOATING_POINT isn't defined, default it from FLT_*. */ | 61 | /* If IEEE_FLOATING_POINT isn't defined, default it from FLT_*. */ |
| 60 | #ifndef IEEE_FLOATING_POINT | 62 | #ifndef IEEE_FLOATING_POINT |
| 61 | #if (FLT_RADIX == 2 && FLT_MANT_DIG == 24 \ | 63 | #if (FLT_RADIX == 2 && FLT_MANT_DIG == 24 \ |