diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-08-30 22:05:36 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-08-30 22:05:36 +0000 |
commit | 2885b3d9021bca961497676fe528ef0dfe16a862 (patch) | |
tree | 7e054a4238a9ba27558cd26be4948a679e9e6d83 | |
parent | 5cd1dcc2f899c7cb169c877335dfb8d36c094d28 (diff) |
Add definition of MID_MACHINE. Set to 0 (MID_ZERO) because it needs to be *something*
-rw-r--r-- | sys/arch/arc/include/param.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/arc/include/param.h b/sys/arch/arc/include/param.h index 228ef65091f..c7a8156b2bb 100644 --- a/sys/arch/arc/include/param.h +++ b/sys/arch/arc/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.10 1998/01/28 13:46:20 pefo Exp $ */ +/* $OpenBSD: param.h,v 1.11 1998/08/30 22:05:35 millert Exp $ */ /* * Copyright (c) 1988 University of Utah. @@ -64,6 +64,8 @@ #define MACHINE_ARCH "mips" #define _MACHINE_ARCH mips +#define MID_MACHINE 0 /* None but has to be defined */ + /* * Round p (pointer or byte index) up to a correctly-aligned value for all * data types (int, long, ...). The result is u_int and must be cast to |