per_config_c.c 251 B

12345678910111213141516
  1. #ifdef CFG_DEBUG
  2. extern void per_config_c_debug(void);
  3. #endif
  4. #ifdef CFG_OTHER
  5. extern void per_config_c_other(void);
  6. #endif
  7. int main(void)
  8. {
  9. #ifdef CFG_DEBUG
  10. per_config_c_debug();
  11. #endif
  12. #ifdef CFG_OTHER
  13. per_config_c_other();
  14. #endif
  15. return 0;
  16. }