mirror of
https://github.com/opnsense/src.git
synced 2026-04-21 14:17:06 -04:00
add a check for GNUC < 3 to typedef bool because gcc 3 always seems to
define it. Suggested by: tjr
This commit is contained in:
parent
aa22cbfea7
commit
64a3cc3d0d
1 changed files with 1 additions and 1 deletions
|
|
@ -37,7 +37,7 @@
|
|||
#define true 1
|
||||
|
||||
#define bool _Bool
|
||||
#if __STDC_VERSION__ < 199901L
|
||||
#if __STDC_VERSION__ < 199901L && __GNUC__ < 3
|
||||
typedef int _Bool;
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue