You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
251 B

#ifdef CFG_DEBUG
extern void per_config_c_debug(void);
#endif
#ifdef CFG_OTHER
extern void per_config_c_other(void);
#endif
int main(void)
{
#ifdef CFG_DEBUG
per_config_c_debug();
#endif
#ifdef CFG_OTHER
per_config_c_other();
#endif
return 0;
}