diff options
author | cognet <cognet@FreeBSD.org> | 2004-05-14 13:44:36 +0000 |
---|---|---|
committer | cognet <cognet@FreeBSD.org> | 2004-05-14 13:44:36 +0000 |
commit | be7f7f1da8c4eb0fd6d57d9014d90275ac6f6915 (patch) | |
tree | 1d12bf03e20aa4fbacc4d0917369bb10b79cb89c /usr.bin/xlint/lint1 | |
parent | 645223694fa88441020fe22685f38ed555553d20 (diff) | |
download | FreeBSD-src-be7f7f1da8c4eb0fd6d57d9014d90275ac6f6915.zip FreeBSD-src-be7f7f1da8c4eb0fd6d57d9014d90275ac6f6915.tar.gz |
Define PTRDIFF_IS_LONG and SIZEOF_IS_ULONG for arm.
Diffstat (limited to 'usr.bin/xlint/lint1')
-rw-r--r-- | usr.bin/xlint/lint1/param.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/usr.bin/xlint/lint1/param.h b/usr.bin/xlint/lint1/param.h index 1e1b81e..0f9ca68 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 |