Describe the bug
___STDC_HOSTED__ starts with 3 underscores instead of 2 as expected.
OS (please complete the following information):
Additional context
This is currently on purpose because the VBCC compiler predefines __STDC_HOSTED__, sets it to 1 and offers no command line switch to avoid its definition. However this symbol should not be defined in the kernel environment. Thus we're defining our own version that starts with 3 underscores.
This should be fixed in the future in some way so that we can use the proper __STDC_HOSTED__ symbol name.
Describe the bug
___STDC_HOSTED__starts with 3 underscores instead of 2 as expected.OS (please complete the following information):
Additional context
This is currently on purpose because the VBCC compiler predefines
__STDC_HOSTED__, sets it to 1 and offers no command line switch to avoid its definition. However this symbol should not be defined in the kernel environment. Thus we're defining our own version that starts with 3 underscores.This should be fixed in the future in some way so that we can use the proper
__STDC_HOSTED__symbol name.