From: Roland McGrath Date: Thu, 27 Oct 1994 00:34:56 +0000 (+0000) Subject: [alliant && i860] (FSCALE): Move defn before #ifndef FSCALE. X-Git-Tag: emacs-19.34~6132 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bf074c060ca957e67f1828422e0d018aefdfad97;p=emacs.git [alliant && i860] (FSCALE): Move defn before #ifndef FSCALE. --- diff --git a/src/getloadavg.c b/src/getloadavg.c index 9bf992b4b58..99521b757fa 100644 --- a/src/getloadavg.c +++ b/src/getloadavg.c @@ -218,6 +218,13 @@ extern int errno; #define FSCALE 1024.0 #endif +#if defined(alliant) && defined(i860) /* Alliant FX/2800 */ +/* defines an incorrect value for FSCALE on an + Alliant FX/2800 Concentrix 2.2, according to ghazi@noc.rutgers.edu. */ +#undef FSCALE +#define FSCALE 100.0 +#endif + #ifndef FSCALE @@ -246,13 +253,6 @@ extern int errno; #define FSCALE 100.0 #endif -#if defined(alliant) && defined(i860) /* Alliant FX/2800 */ -/* defines an incorrect value for FSCALE on an - Alliant FX/2800 Concentrix 2.2, according to ghazi@noc.rutgers.edu. */ -#undef FSCALE -#define FSCALE 100.0 -#endif - #endif /* Not FSCALE. */ #if !defined (LDAV_CVT) && defined (FSCALE)