mirror of
https://github.com/reactos/CMake.git
synced 2024-11-24 20:19:53 +00:00
15 lines
241 B
C
15 lines
241 B
C
#include "testConly.h"
|
|
|
|
int CsharedFunction()
|
|
{
|
|
#if !defined(_WIN32) || defined(__CYGWIN__)
|
|
#ifndef TEST_C_FLAGS
|
|
printf("TEST_C_FLAGS failed\n");
|
|
return 0;
|
|
#else
|
|
printf("Passed: TEST_C_FLAGS passed\n");
|
|
#endif
|
|
#endif
|
|
return 1;
|
|
}
|