int.h (ntp-4.2.8p14) | : | int.h (ntp-4.2.8p15) | ||
---|---|---|---|---|
skipping to change at line 23 | skipping to change at line 23 | |||
* LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE | * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE | |||
* OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR | * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR | |||
* PERFORMANCE OF THIS SOFTWARE. | * PERFORMANCE OF THIS SOFTWARE. | |||
*/ | */ | |||
/* $Id: int.h,v 1.13 2007/06/19 23:47:20 tbox Exp $ */ | /* $Id: int.h,v 1.13 2007/06/19 23:47:20 tbox Exp $ */ | |||
#ifndef ISC_INT_H | #ifndef ISC_INT_H | |||
#define ISC_INT_H 1 | #define ISC_INT_H 1 | |||
#define _INTEGRAL_MAX_BITS 64 | #ifndef _INTEGRAL_MAX_BITS | |||
# define _INTEGRAL_MAX_BITS 64 | ||||
#endif | ||||
#include <limits.h> | #include <limits.h> | |||
typedef __int8 isc_int8_t; | typedef __int8 isc_int8_t; | |||
typedef unsigned __int8 isc_uint8_t; | typedef unsigned __int8 isc_uint8_t; | |||
typedef __int16 isc_int16_t; | typedef __int16 isc_int16_t; | |||
typedef unsigned __int16 isc_uint16_t; | typedef unsigned __int16 isc_uint16_t; | |||
typedef __int32 isc_int32_t; | typedef __int32 isc_int32_t; | |||
typedef unsigned __int32 isc_uint32_t; | typedef unsigned __int32 isc_uint32_t; | |||
typedef __int64 isc_int64_t; | typedef __int64 isc_int64_t; | |||
typedef unsigned __int64 isc_uint64_t; | typedef unsigned __int64 isc_uint64_t; | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 3 lines changed or added |