diff options
| author | Richard M. Stallman | 1997-07-05 03:27:25 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-07-05 03:27:25 +0000 |
| commit | 523e929122415f6bad52eca72af3222c90caebcf (patch) | |
| tree | b75b5ead6f174bc6be289caa20ed9a5cbc99bf4c /src/floatfns.c | |
| parent | c4009c1f3dca5e5e240ec732f1a617ae62c0c64c (diff) | |
| download | emacs-523e929122415f6bad52eca72af3222c90caebcf.tar.gz emacs-523e929122415f6bad52eca72af3222c90caebcf.zip | |
Include float.h before lisp.h.
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 \ |