#define RR0 1 #define RR1 0 void main() { ... #if RR0 precedure0(); #elif RR1 precedure1(); #endif ... }
#define RR0 0 #define RR1 1
Sorry ,just my fault.There is mistake with 'procedure1()',so it can't be compiled and linked . Thank you very much!
"There is mistake with 'procedure1()',so it can't be compiled and linked." It's always best to pay attention to the specific error messages first. Remember, if you double-click a compiler error message, it will take you straight to the relevant 'C' source line; Also, select any error message, then press F1, and you will get help on the specific message.