diff options
author | Roland McGrath <roland@gnu.org> | 1994-10-27 00:34:56 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1994-10-27 00:34:56 +0000 |
commit | bf074c060ca957e67f1828422e0d018aefdfad97 (patch) | |
tree | 84b86aa9eecfe6d52472c1d3ee0cf2653343b886 /src/getloadavg.c | |
parent | 3abc2d461ac57bcc8f4f45366bfd2a7f83b0c015 (diff) | |
download | emacs-bf074c060ca957e67f1828422e0d018aefdfad97.tar.gz |
[alliant && i860] (FSCALE): Move defn before #ifndef FSCALE.
Diffstat (limited to 'src/getloadavg.c')
-rw-r--r-- | src/getloadavg.c | 14 |
1 files changed, 7 insertions, 7 deletions
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 */ +/* <sys/param.h> 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 */ -/* <sys/param.h> 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) |