What does this error mean? I'm just redefining som...
# kotlin-native
m
What does this error mean? I'm just redefining some
#define
'd functions into actual functions
e
probably the preprocessor is replacing the function name in your declaration with the
#define
, which leads to invalid code. you may need to
#undefine
the symbol first or choose a different name