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: 3.71.5~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=612a29e0dd1eae700009f62448376328d2a8b374;p=platform%2Fupstream%2Fmake.git [alliant && i860] (FSCALE): Move defn before #ifndef FSCALE. --- diff --git a/getloadavg.c b/getloadavg.c index 9bf992b..99521b7 100644 --- a/getloadavg.c +++ b/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)