From 58bc93c3ddbdf0b2fde9b7d2b4342f90d83ec633 Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Tue, 25 Apr 2000 21:16:12 +0000 Subject: [PATCH] 81. [cleanup] and do not need . --- CHANGES | 3 +++ lib/isc/include/isc/boolean.h | 6 ------ lib/isc/unix/include/isc/int.h | 6 ------ lib/isc/win32/include/isc/int.h | 6 ------ 4 files changed, 3 insertions(+), 18 deletions(-) diff --git a/CHANGES b/CHANGES index 5b8c14cd27..874a872fdd 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,6 @@ + 81. [cleanup] and do not need + . + 80. [cleanup] does not need or . 79. [cleanup] does not need . diff --git a/lib/isc/include/isc/boolean.h b/lib/isc/include/isc/boolean.h index 88cee1f718..7b51038599 100644 --- a/lib/isc/include/isc/boolean.h +++ b/lib/isc/include/isc/boolean.h @@ -18,16 +18,10 @@ #ifndef ISC_BOOLEAN_H #define ISC_BOOLEAN_H 1 -#include - -ISC_LANG_BEGINDECLS - typedef enum { isc_boolean_false = 0, isc_boolean_true = 1 } isc_boolean_t; #define ISC_FALSE isc_boolean_false #define ISC_TRUE isc_boolean_true #define ISC_TF(x) ((x) ? ISC_TRUE : ISC_FALSE) -ISC_LANG_ENDDECLS - #endif /* ISC_BOOLEAN_H */ diff --git a/lib/isc/unix/include/isc/int.h b/lib/isc/unix/include/isc/int.h index a32a01d9e7..bfd5519938 100644 --- a/lib/isc/unix/include/isc/int.h +++ b/lib/isc/unix/include/isc/int.h @@ -18,10 +18,6 @@ #ifndef ISC_INT_H #define ISC_INT_H 1 -#include - -ISC_LANG_BEGINDECLS - typedef char isc_int8_t; typedef unsigned char isc_uint8_t; typedef short isc_int16_t; @@ -31,6 +27,4 @@ typedef unsigned int isc_uint32_t; typedef long long isc_int64_t; typedef unsigned long long isc_uint64_t; -ISC_LANG_ENDDECLS - #endif /* ISC_INT_H */ diff --git a/lib/isc/win32/include/isc/int.h b/lib/isc/win32/include/isc/int.h index 31221ba9a6..3c6b2ec797 100644 --- a/lib/isc/win32/include/isc/int.h +++ b/lib/isc/win32/include/isc/int.h @@ -18,10 +18,6 @@ #ifndef ISC_INT_H #define ISC_INT_H 1 -#include - -ISC_LANG_BEGINDECLS - typedef __int8 isc_int8_t; typedef unsigned __int8 isc_uint8_t; typedef __int16 isc_int16_t; @@ -31,6 +27,4 @@ typedef unsigned __int32 isc_uint32_t; typedef __int64 isc_int64_t; typedef unsigned __int64 isc_uint64_t; -ISC_LANG_ENDDECLS - #endif /* ISC_INT_H */