summaryrefslogtreecommitdiff
path: root/global.h
diff options
context:
space:
mode:
authorFlavio Cruz <flaviocruz@gmail.com>2022-11-24 15:53:40 -0500
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2022-11-25 01:07:59 +0100
commit7063f0aefd8a8c3c8b610ef6168cddfb2141fa12 (patch)
tree33c160c80c6a269fb8adf7c65c75be7fc6181ea0 /global.h
parentf51fc836c5b690f5448e76196dd40bdb55957a11 (diff)
mig: replace boolean.h with stdbool.h
Message-Id: <Y3/Z1CGL8D4OwT66@viriathus>
Diffstat (limited to 'global.h')
-rw-r--r--global.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/global.h b/global.h
index cadd7e7..8e57df2 100644
--- a/global.h
+++ b/global.h
@@ -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;