forked from universal-ctags/ctags
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
buildsys: unify USE_STDBOOL_H a HAVE_STDBOOL_H to use stdbool.h
There were two definitions to manage including stdbool.h or not. I cannot find any reason to have to definitions. This change unifies the two into HAVE_STDBOOL_H. For compiling files under gnu_regex dir with mk_mvc.mak, we have never used stdbool. We give the definitions of bool, true, and false via command lines invoking compiler. Signed-off-by: Masatake YAMATO <yamato@redhat.com>
- Loading branch information
Showing
4 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,7 +47,7 @@ | |
* DATA DECLARATIONS | ||
*/ | ||
|
||
#ifdef USE_STDBOOL_H | ||
#ifdef HAVE_STDBOOL_H | ||
# include <stdbool.h> | ||
#endif | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters