mirror of
https://github.com/reactos/CMake.git
synced 2025-01-05 18:38:46 +00:00
14 lines
209 B
C
14 lines
209 B
C
#include "testConly.h"
|
|
#include <stdio.h>
|
|
|
|
int CsharedFunction()
|
|
{
|
|
#ifndef TEST_C_FLAGS
|
|
printf("TEST_C_FLAGS failed\n");
|
|
return 0;
|
|
#else
|
|
printf("Passed: TEST_C_FLAGS passed\n");
|
|
#endif
|
|
return 1;
|
|
}
|