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.h | |
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.h')
-rw-r--r-- | global.h | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -27,18 +27,18 @@ #ifndef _GLOBAL_H #define _GLOBAL_H +#include <stdbool.h> #include <sys/types.h> -#include "boolean.h" #include "mig_string.h" -extern boolean_t DefaultFiles; /* default output file names if no arguments */ -extern boolean_t BeQuiet; /* no warning messages */ -extern boolean_t BeVerbose; /* summarize types, routines */ -extern boolean_t GenSymTab; +extern bool DefaultFiles; /* default output file names if no arguments */ +extern bool BeQuiet; /* no warning messages */ +extern bool BeVerbose; /* summarize types, routines */ +extern bool GenSymTab; -extern boolean_t IsKernelUser; -extern boolean_t IsKernelServer; +extern bool IsKernelUser; +extern bool IsKernelServer; extern const_string_t RCSId; |