diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-18 16:48:23 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-18 16:48:23 +0000 |
commit | bee264136526e0003a89cf791ca70c7961aeed62 (patch) | |
tree | 5c2a447112388f890db65d955eaf5aa9ef34e73e /usr.bin | |
parent | 9c89ae340349a172d3a59c1dc17d4056b5d4e6c7 (diff) |
from netbsd:
Add PTRDIFF_IS_LONG and SIZEOF_IS_ULONG config entries for (32-bit) mips
Diffstat (limited to 'usr.bin')
-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 17e266ebe20..3ff1c1e1539 100644 --- a/usr.bin/xlint/lint1/param.h +++ b/usr.bin/xlint/lint1/param.h @@ -1,4 +1,4 @@ -/* $NetBSD: param.h,v 1.4 1995/07/23 18:14:41 ragge Exp $ */ +/* $NetBSD: param.h,v 1.5 1995/12/17 02:53:11 jonathan Exp $ */ /* * Copyright (c) 1994, 1995 Jochen Pohl @@ -69,6 +69,9 @@ #elif __m68k__ #define PTRDIFF_IS_LONG 0 #define SIZEOF_IS_ULONG 0 +#elif __mips__ +#define PTRDIFF_IS_LONG 0 +#define SIZEOF_IS_ULONG 0 #elif __ns32k__ #define PTRDIFF_IS_LONG 0 #define SIZEOF_IS_ULONG 0 |