implement right bit shift over a small integer
This commit is contained in:
@ -45,7 +45,8 @@ enum stix_errnum_t
|
||||
STIX_ENOIMPL, /**< not implemented */
|
||||
STIX_ESYSERR, /**< subsystem error */
|
||||
STIX_EINTERN, /**< internal error */
|
||||
STIX_ENOMEM, /**< insufficient memory */
|
||||
STIX_ESYSMEM, /**< insufficient system memory */
|
||||
STIX_EOOMEM, /**< insufficient object memory */
|
||||
STIX_EINVAL, /**< invalid parameter or data */
|
||||
STIX_ERANGE, /**< range error. overflow and underflow */
|
||||
STIX_ENOENT, /**< no matching entry */
|
||||
@ -296,9 +297,6 @@ typedef enum stix_obj_type_t stix_obj_type_t;
|
||||
(((stix_oow_t)(r)) << 0) \
|
||||
)
|
||||
|
||||
#define STIX_OBJ_SIZE_MAX ((stix_oow_t)STIX_SMOOI_MAX)
|
||||
/*#define STIX_OBJ_SIZE_MAX ((stix_oow_t)STIX_TYPE_MAX(stix_oow_t))*/
|
||||
|
||||
#define STIX_OBJ_HEADER \
|
||||
stix_oow_t _flags; \
|
||||
stix_oow_t _size; \
|
||||
|
Reference in New Issue
Block a user