Index: b/usr/src/uts/common/sys/int_types.h =================================================================== --- a/usr/src/uts/common/sys/int_types.h 2014-03-01 22:52:31.961483584 +0400 +++ b/usr/src/uts/common/sys/int_types.h 2014-03-01 22:53:41.494892135 +0400 @@ -91,13 +91,18 @@ #endif typedef unsigned char uint8_t; +typedef uint8_t u_int8_t; typedef unsigned short uint16_t; +typedef uint16_t u_int16_t; typedef unsigned int uint32_t; +typedef uint32_t u_int32_t; #ifdef _LP64 typedef unsigned long uint64_t; +typedef uint64_t u_int64_t; #else /* _ILP32 */ #if defined(_LONGLONG_TYPE) typedef unsigned long long uint64_t; +typedef uint64_t u_int64_t; #endif #endif