diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-03-24 16:53:47 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-03-24 16:53:47 +0000 |
commit | c40b48acc6f7e686d1f07bf25333529bc56639ba (patch) | |
tree | e15eac10a916dcbdc424deb3fe712fa681edd2a5 /sys/arch/mvme88k/include | |
parent | f8777bdaaccd944f0b3553ff14cdf9072124acf8 (diff) |
Prefix usage of "long long" with a "/* LONGLONG */" comment to shut up
lint(1) about it
Diffstat (limited to 'sys/arch/mvme88k/include')
-rw-r--r-- | sys/arch/mvme88k/include/types.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/arch/mvme88k/include/types.h b/sys/arch/mvme88k/include/types.h index 58d1d8f47c1..7bcdde45938 100644 --- a/sys/arch/mvme88k/include/types.h +++ b/sys/arch/mvme88k/include/types.h @@ -73,7 +73,9 @@ typedef short int16_t; typedef unsigned short u_int16_t; typedef int int32_t; typedef unsigned int u_int32_t; +/* LONGLONG */ typedef long long int64_t; +/* LONGLONG */ typedef unsigned long long u_int64_t; typedef int32_t register_t; |