diff options
author | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1996-12-21 21:16:44 +0000 |
---|---|---|
committer | Dale S. Rahn <rahnds@cvs.openbsd.org> | 1996-12-21 21:16:44 +0000 |
commit | 56204a319942554c696d92f4004952d6ca1683a5 (patch) | |
tree | 2dfcabaa1db09c012bcbcaee9a04a188d409fb18 | |
parent | cfd651e086bb06f0f849655708728307aa6122ff (diff) |
Add powerpc support.
-rw-r--r-- | usr.bin/xlint/lint1/param.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/xlint/lint1/param.h b/usr.bin/xlint/lint1/param.h index 556aad3303f..d1d68cf0c21 100644 --- a/usr.bin/xlint/lint1/param.h +++ b/usr.bin/xlint/lint1/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.4 1996/06/26 05:44:18 deraadt Exp $ */ +/* $OpenBSD: param.h,v 1.5 1996/12/21 21:16:43 rahnds Exp $ */ /* $NetBSD: param.h,v 1.6 1996/04/01 21:47:57 mark Exp $ */ /* @@ -85,6 +85,9 @@ #elif __arm32__ #define PTRDIFF_IS_LONG 0 #define SIZEOF_IS_ULONG 0 +#elif __ppc__ +#define PTRDIFF_IS_LONG 0 +#define SIZEOF_IS_ULONG 0 #else #error unknown machine type #endif |