limits.h (467B)
1 /* 2 * 3 * This license is set out in https://raw.githubusercontent.com/Broadcom-Network-Switching-Software/OpenBCM/master/Legal/LICENSE file. 4 * 5 * Copyright 2007-2019 Broadcom Inc. All rights reserved. 6 * 7 * File: limits.h 8 * Purpose: 9 */ 10 11 #ifndef _SAL_LIMITS_H_ 12 #define _SAL_LIMITS_H_ 13 14 #define SAL_CHAR_BIT 8 15 16 #define SAL_UINT32_MAX 0xffffffff 17 18 #define SAL_INT32_MAX 0x7fffffff 19 #define SAL_INT32_MIN 0x80000000 20 21 #endif /* _SAL_LIMITS_H_ */