aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland McGrath1994-10-27 00:34:56 +0000
committerRoland McGrath1994-10-27 00:34:56 +0000
commitbf074c060ca957e67f1828422e0d018aefdfad97 (patch)
tree84b86aa9eecfe6d52472c1d3ee0cf2653343b886
parent3abc2d461ac57bcc8f4f45366bfd2a7f83b0c015 (diff)
downloademacs-bf074c060ca957e67f1828422e0d018aefdfad97.tar.gz
emacs-bf074c060ca957e67f1828422e0d018aefdfad97.zip
[alliant && i860] (FSCALE): Move defn before #ifndef FSCALE.
-rw-r--r--src/getloadavg.c14
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;
218#define FSCALE 1024.0 218#define FSCALE 1024.0
219#endif 219#endif
220 220
221#if defined(alliant) && defined(i860) /* Alliant FX/2800 */
222/* <sys/param.h> defines an incorrect value for FSCALE on an
223 Alliant FX/2800 Concentrix 2.2, according to ghazi@noc.rutgers.edu. */
224#undef FSCALE
225#define FSCALE 100.0
226#endif
227
221 228
222#ifndef FSCALE 229#ifndef FSCALE
223 230
@@ -246,13 +253,6 @@ extern int errno;
246#define FSCALE 100.0 253#define FSCALE 100.0
247#endif 254#endif
248 255
249#if defined(alliant) && defined(i860) /* Alliant FX/2800 */
250/* <sys/param.h> defines an incorrect value for FSCALE on an
251 Alliant FX/2800 Concentrix 2.2, according to ghazi@noc.rutgers.edu. */
252#undef FSCALE
253#define FSCALE 100.0
254#endif
255
256#endif /* Not FSCALE. */ 256#endif /* Not FSCALE. */
257 257
258#if !defined (LDAV_CVT) && defined (FSCALE) 258#if !defined (LDAV_CVT) && defined (FSCALE)