From bc67fdeab26f23332faa81ef7f2ef07215d4c057 Mon Sep 17 00:00:00 2001 From: Olivier Houchard Date: Fri, 14 May 2004 13:44:36 +0000 Subject: [PATCH] Define PTRDIFF_IS_LONG and SIZEOF_IS_ULONG for arm. --- usr.bin/xlint/lint1/param.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/usr.bin/xlint/lint1/param.h b/usr.bin/xlint/lint1/param.h index 1e1b81eff481..0f9ca6800416 100644 --- a/usr.bin/xlint/lint1/param.h +++ b/usr.bin/xlint/lint1/param.h @@ -92,6 +92,9 @@ #elif __vax__ #define PTRDIFF_IS_LONG 0 #define SIZEOF_IS_ULONG 0 +#elif __arm__ +#define PTRDIFF_IS_LONG 0 +#define SIZEOF_IS_ULONG 0 #else #error unknown machine type #endif