diff src/getloadavg.c @ 9723:ba541f60aa46

[alliant && i860] (FSCALE): Move defn before #ifndef FSCALE.
author Roland McGrath <roland@gnu.org>
date Thu, 27 Oct 1994 00:34:56 +0000
parents 393a55341859
children f9f787d5e5ff
line wrap: on
line diff
--- a/src/getloadavg.c	Wed Oct 26 23:25:45 1994 +0000
+++ b/src/getloadavg.c	Thu Oct 27 00:34:56 1994 +0000
@@ -218,6 +218,13 @@
 #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 @@
 #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)