Re: stdbool.h #define bool _Bool

2019-07-31 Thread Joerg Sonnenberger
On Wed, Jul 31, 2019 at 08:55:38AM +, co...@sdf.org wrote: > In this case, Mono doesn't include stdbool.h, it's side-loaded for us. > I can avoid the issue with a hack #undef bool, but I'd like to see a > future where Mono works unmodified on unmodified NetBSD, without the use > of hacks. They

Re: stdbool.h #define bool _Bool

2019-07-31 Thread Kamil Rytarowski
On 31.07.2019 10:55, co...@sdf.org wrote: > hi folks, > > while building an updated Mono, I came across a familiar issue: > > icall.c:9175:35: error: ‘ICALL_SIG_TYPE__Bool’ undeclared here (not in a > function); did you mean ‘ICALL_SIG_TYPE_bool’? > #define ICALL_SIG_TYPES_1(a) ICALL_SIG_T

stdbool.h #define bool _Bool

2019-07-31 Thread coypu
hi folks, while building an updated Mono, I came across a familiar issue: icall.c:9175:35: error: ‘ICALL_SIG_TYPE__Bool’ undeclared here (not in a function); did you mean ‘ICALL_SIG_TYPE_bool’? #define ICALL_SIG_TYPES_1(a) ICALL_SIG_TYPE_ ## a, I've had this issue before with macros, but