diff options
author | 1998-08-30 22:05:35 +0000 | |
---|---|---|
committer | 1998-08-30 22:05:35 +0000 | |
commit | a6f5c0b7ca777e23d0c6e2b20abfa28e18bb3814 (patch) | |
tree | b041f243578dd58f46c3d4826c76661524f16bf3 | |
parent | sync (diff) | |
download | wireguard-openbsd-a6f5c0b7ca777e23d0c6e2b20abfa28e18bb3814.tar.xz wireguard-openbsd-a6f5c0b7ca777e23d0c6e2b20abfa28e18bb3814.zip |
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 |