diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2022-11-24 15:53:40 -0500 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-11-25 01:07:59 +0100 |
commit | 7063f0aefd8a8c3c8b610ef6168cddfb2141fa12 (patch) | |
tree | 33c160c80c6a269fb8adf7c65c75be7fc6181ea0 /global.c | |
parent | f51fc836c5b690f5448e76196dd40bdb55957a11 (diff) | |
download | mig-7063f0aefd8a8c3c8b610ef6168cddfb2141fa12.tar.gz mig-7063f0aefd8a8c3c8b610ef6168cddfb2141fa12.tar.bz2 mig-7063f0aefd8a8c3c8b610ef6168cddfb2141fa12.zip |
mig: replace boolean.h with stdbool.h
Message-Id: <Y3/Z1CGL8D4OwT66@viriathus>
Diffstat (limited to 'global.c')
-rw-r--r-- | global.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -28,13 +28,13 @@ #include "error.h" #include "global.h" -boolean_t DefaultFiles = TRUE; -boolean_t BeQuiet = FALSE; -boolean_t BeVerbose = FALSE; -boolean_t GenSymTab = FALSE; +bool DefaultFiles = true; +bool BeQuiet = false; +bool BeVerbose = false; +bool GenSymTab = false; -boolean_t IsKernelUser = FALSE; -boolean_t IsKernelServer = FALSE; +bool IsKernelUser = false; +bool IsKernelServer = false; const_string_t RCSId = strNULL; |