testConly.c 241 B

1234567891011121314
  1. #include "testConly.h"
  2. int CsharedFunction()
  3. {
  4. #if !defined(_WIN32) || defined(__CYGWIN__)
  5. #ifndef TEST_C_FLAGS
  6. printf("TEST_C_FLAGS failed\n");
  7. return 0;
  8. #else
  9. printf("Passed: TEST_C_FLAGS passed\n");
  10. #endif
  11. #endif
  12. return 1;
  13. }