From 7063f0aefd8a8c3c8b610ef6168cddfb2141fa12 Mon Sep 17 00:00:00 2001 From: Flavio Cruz Date: Thu, 24 Nov 2022 15:53:40 -0500 Subject: mig: replace boolean.h with stdbool.h Message-Id: --- mig_string.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'mig_string.h') diff --git a/mig_string.h b/mig_string.h index d6cef95..920171c 100644 --- a/mig_string.h +++ b/mig_string.h @@ -27,10 +27,9 @@ #ifndef _MIG_STRING_H #define _MIG_STRING_H +#include #include -#include "boolean.h" - typedef char *string_t; typedef const char *const_string_t; typedef const_string_t identifier_t; @@ -43,7 +42,7 @@ extern void strfree(string_t string); #define streql(a, b) (strcmp((a), (b)) == 0) -extern const char *strbool(boolean_t bool); +extern const char *strbool(bool v); extern const char *strstring(const_string_t string); #endif /* _MIG_STRING_H */ -- cgit v1.2.3