testConly.c 205 B

12345678910111213
  1. #include "testConly.h"
  2. #include <stdio.h>
  3. int CsharedFunction()
  4. {
  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. return 1;
  12. }