From cae5aa72ceb7e31055d8e414e08a5fe28c34a697 Mon Sep 17 00:00:00 2001 From: tholo Date: Sun, 24 Mar 1996 16:53:36 +0000 Subject: [PATCH] Prefix usage of "long long" with a "/* LONGLONG */" comment to shut up lint(1) about it --- sys/arch/i386/include/types.h | 2 ++ sys/arch/m68k/include/types.h | 2 ++ sys/arch/mvme88k/include/types.h | 2 ++ sys/arch/pc532/include/types.h | 2 ++ sys/arch/pica/include/types.h | 2 ++ sys/arch/pmax/include/types.h | 2 ++ sys/arch/sparc/include/types.h | 2 ++ sys/arch/vax/include/types.h | 2 ++ 8 files changed, 16 insertions(+) diff --git a/sys/arch/i386/include/types.h b/sys/arch/i386/include/types.h index f6391c5e66d..e333a63b4d4 100644 --- a/sys/arch/i386/include/types.h +++ b/sys/arch/i386/include/types.h @@ -64,7 +64,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; diff --git a/sys/arch/m68k/include/types.h b/sys/arch/m68k/include/types.h index 5d401340690..061a6594eb8 100644 --- a/sys/arch/m68k/include/types.h +++ b/sys/arch/m68k/include/types.h @@ -63,7 +63,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; 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; diff --git a/sys/arch/pc532/include/types.h b/sys/arch/pc532/include/types.h index 776ea0dc7ea..82b84254f40 100644 --- a/sys/arch/pc532/include/types.h +++ b/sys/arch/pc532/include/types.h @@ -64,7 +64,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; diff --git a/sys/arch/pica/include/types.h b/sys/arch/pica/include/types.h index 7e02fc291e0..6badf6e928c 100644 --- a/sys/arch/pica/include/types.h +++ b/sys/arch/pica/include/types.h @@ -67,7 +67,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; diff --git a/sys/arch/pmax/include/types.h b/sys/arch/pmax/include/types.h index 4e42f810bdf..828a01acacb 100644 --- a/sys/arch/pmax/include/types.h +++ b/sys/arch/pmax/include/types.h @@ -67,7 +67,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; diff --git a/sys/arch/sparc/include/types.h b/sys/arch/sparc/include/types.h index d150094b26f..4ac77b33791 100644 --- a/sys/arch/sparc/include/types.h +++ b/sys/arch/sparc/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; diff --git a/sys/arch/vax/include/types.h b/sys/arch/vax/include/types.h index 89497fc4862..b37de79c8e7 100644 --- a/sys/arch/vax/include/types.h +++ b/sys/arch/vax/include/types.h @@ -67,7 +67,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; -- 2.20.1