mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Add multiple inclusion protection.
PR: 23902 Submitted by: Christian Weisgerber <naddy@mips.inka.de>
This commit is contained in:
parent
00dfd8785a
commit
ebf7598b4d
2 changed files with 10 additions and 0 deletions
|
|
@ -36,6 +36,9 @@
|
|||
* @(#)limits.h 8.3 (Berkeley) 1/4/94
|
||||
*/
|
||||
|
||||
#ifndef _MACHINE_LIMITS_H_
|
||||
#define _MACHINE_LIMITS_H_
|
||||
|
||||
#define CHAR_BIT 8 /* number of bits in a char */
|
||||
#define MB_LEN_MAX 6 /* Allow 31 bit UTF2 */
|
||||
|
||||
|
|
@ -100,3 +103,5 @@
|
|||
#define FLT_MAX 3.40282347E+38F
|
||||
#define FLT_MIN 1.17549435E-38F
|
||||
#endif
|
||||
|
||||
#endif /* !_MACHINE_LIMITS_H_ */
|
||||
|
|
|
|||
|
|
@ -36,6 +36,9 @@
|
|||
* @(#)limits.h 8.3 (Berkeley) 1/4/94
|
||||
*/
|
||||
|
||||
#ifndef _MACHINE_LIMITS_H_
|
||||
#define _MACHINE_LIMITS_H_
|
||||
|
||||
#define CHAR_BIT 8 /* number of bits in a char */
|
||||
#define MB_LEN_MAX 6 /* Allow 31 bit UTF2 */
|
||||
|
||||
|
|
@ -100,3 +103,5 @@
|
|||
#define FLT_MAX 3.40282347E+38F
|
||||
#define FLT_MIN 1.17549435E-38F
|
||||
#endif
|
||||
|
||||
#endif /* !_MACHINE_LIMITS_H_ */
|
||||
|
|
|
|||
Loading…
Reference in a new issue