Hello,

does somebody know how or if multiline macros can be used in lite-C?

I neither found any explicit info about this in the manual nor on the forums.

Code:
/* works */
#define TEST_MACRO(a,b) ((a)*(b)) 

/* does not work
   compiler error: 'a' undeclared identifier */
#define TEST_MACRO(a,b) \
((a)*(b))