summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-08-10 18:58:06 +0000
committerRichard M. Stallman <rms@gnu.org>1996-08-10 18:58:06 +0000
commitcda40aea36a21ffc088fb7a061d1bfa224ae99c2 (patch)
tree525b6ba2c2a0b534c03239f6e2c59f755e2eeb56
parent0dcdc912a8d2c1623b249fe65ad4ba51a79b1e7b (diff)
downloademacs-cda40aea36a21ffc088fb7a061d1bfa224ae99c2.tar.gz
(LOAD_AVE_TYPE, FSCALE, LOAD_AVE_CVT): Undef them before defining.
-rw-r--r--src/m/sequent-ptx.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/m/sequent-ptx.h b/src/m/sequent-ptx.h
index 26bca6a1fda..112638dbbf1 100644
--- a/src/m/sequent-ptx.h
+++ b/src/m/sequent-ptx.h
@@ -59,11 +59,14 @@ Boston, MA 02111-1307, USA. */
/* Data type of load average, as read out of kmem. */
+#undef LOAD_AVE_TYPE
#define LOAD_AVE_TYPE unsigned long
/* Convert that into an integer that is 100 for a load average of 1.0 */
+#undef FSCALE
#define FSCALE 1000.0
+#undef LOAD_AVE_CVT
#define LOAD_AVE_CVT(x) (int) (((double) (x)) * 100.0 / FSCALE)
/* Define CANNOT_DUMP on machines where unexec does not work.