main.c 163 B

12345678910111213
  1. #ifndef NO_NEED_TO_CALL
  2. extern int icasetest();
  3. #endif
  4. int main(int argc, char** argv)
  5. {
  6. #ifdef NO_NEED_TO_CALL
  7. return 0;
  8. #else
  9. return icasetest();
  10. #endif
  11. }