diff options
Diffstat (limited to 'include/u8c/thrdsafe.h')
-rw-r--r-- | include/u8c/thrdsafe.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/include/u8c/thrdsafe.h b/include/u8c/thrdsafe.h index 1de6a31..2ab6709 100644 --- a/include/u8c/thrdsafe.h +++ b/include/u8c/thrdsafe.h @@ -16,12 +16,6 @@ /* Thread-safe */ # if !defined(u8c_sym_thrdsafe) # define u8c_sym_thrdsafe -# include <stdint.h> -# if defined(__cplusplus) -extern "C" { -# endif -extern uint_least8_t const u8c_thrdsafe; -# if defined(__cplusplus) -} -# endif +# include <stdbool.h> +extern bool const u8c_thrdsafe; # endif |