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 /utils.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 'utils.h')
-rw-r--r-- | utils.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -77,16 +77,16 @@ extern void WriteStructDecl(FILE *file, const argument_t *args, const char *name); extern void WriteStaticDecl(FILE *file, const ipc_type_t *it, - dealloc_t dealloc, boolean_t longform, - boolean_t is_server, boolean_t inname, + dealloc_t dealloc, bool longform, + bool is_server, bool inname, identifier_t name); extern void WriteCopyType(FILE *file, const ipc_type_t *it, const char *left, const char *right, ...); extern void WritePackMsgType(FILE *file, const ipc_type_t *it, - dealloc_t dealloc, boolean_t longform, - boolean_t inname, const char *left, + dealloc_t dealloc, bool longform, + bool inname, const char *left, const char *right, ...); #endif /* _UTILS_H */ |