From 6833a5086659c2ffa3624c1424ad4a4bad1830ae Mon Sep 17 00:00:00 2001 From: thorpej Date: Sat, 19 Apr 1997 06:16:29 +0000 Subject: [PATCH] Add support for the PowerPC. --- usr.bin/xlint/lint1/param.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/usr.bin/xlint/lint1/param.h b/usr.bin/xlint/lint1/param.h index 46ae4b743228..6799558dc1aa 100644 --- a/usr.bin/xlint/lint1/param.h +++ b/usr.bin/xlint/lint1/param.h @@ -1,4 +1,4 @@ -/* $NetBSD: param.h,v 1.6 1996/04/01 21:47:57 mark Exp $ */ +/* $NetBSD: param.h,v 1.7 1997/04/19 06:16:29 thorpej Exp $ */ /* * Copyright (c) 1994, 1995 Jochen Pohl @@ -84,6 +84,9 @@ #elif __arm32__ #define PTRDIFF_IS_LONG 0 #define SIZEOF_IS_ULONG 0 +#elif __powerpc__ +#define PTRDIFF_IS_LONG 0 +#define SIZEOF_IS_ULONG 0 #else #error unknown machine type #endif