1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-31 11:13:50 +00:00

No need to include <float.h> before "lisp.h",

as the latter no longer defines DBL_DIG.
This commit is contained in:
Paul Eggert 1997-10-23 04:29:36 +00:00
parent f356c3fb99
commit 2f2615421a
2 changed files with 5 additions and 14 deletions

View File

@ -22,14 +22,6 @@ Boston, MA 02111-1307, USA. */
#include <signal.h>
#include <config.h>
/* Put this before lisp.h so that lisp.h can define DBL_DIG if not defined. */
#ifdef LISP_FLOAT_TYPE
#ifdef STDC_HEADERS
#include <float.h>
#endif
#endif
#include "lisp.h"
#include "puresize.h"
#include "charset.h"
@ -45,6 +37,7 @@ Boston, MA 02111-1307, USA. */
#ifdef STDC_HEADERS
#include <stdlib.h>
#include <float.h>
#endif
/* If IEEE_FLOATING_POINT isn't defined, default it from FLT_*. */

View File

@ -47,17 +47,15 @@ Boston, MA 02111-1307, USA. */
#include <signal.h>
#include <config.h>
/* Put this before lisp.h so that lisp.h can define DBL_DIG if not defined. */
#if STDC_HEADERS
#include <float.h>
#endif
#include "lisp.h"
#include "syssignal.h"
#ifdef LISP_FLOAT_TYPE
#if STDC_HEADERS
#include <float.h>
#endif
/* If IEEE_FLOATING_POINT isn't defined, default it from FLT_*. */
#ifndef IEEE_FLOATING_POINT
#if (FLT_RADIX == 2 && FLT_MANT_DIG == 24 \