testConly.c 190 B

123456789101112
  1. #include "testConly.h"
  2. int CsharedFunction()
  3. {
  4. #ifndef TEST_C_FLAGS
  5. printf("TEST_C_FLAGS failed\n");
  6. return 0;
  7. #else
  8. printf("Passed: TEST_C_FLAGS passed\n");
  9. #endif
  10. return 1;
  11. }