I can understand why `bool` give a syntax error, but `_Bool` has been a builtin since C99. For reference, this is the example I've tried: ```c _Bool (*f)(void *, void *) ``` If I replace that with: ```c int (*f)(void *, void *) ``` Then everything works.
I can understand why
boolgive a syntax error, but_Boolhas been a builtin since C99.For reference, this is the example I've tried:
If I replace that with:
Then everything works.