diff options
Diffstat (limited to 'include/u8c/init.h')
-rw-r--r-- | include/u8c/init.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/include/u8c/init.h b/include/u8c/init.h index 823c1fb..1aa4804 100644 --- a/include/u8c/init.h +++ b/include/u8c/init.h @@ -16,12 +16,6 @@ /* Initialise */ # if !defined(u8c_sym_init) # define u8c_sym_init -# include <stdint.h> -# if defined(__cplusplus) -extern "C" { -# endif -extern uint_least8_t u8c_init(void); -# if defined(__cplusplus) -} -# endif +# include <stdbool.h> +extern bool u8c_init(void); # endif |