Files
CMake/Tests/ComplexOneConfig/Library/testConly.c
2023-10-26 09:20:45 -04:00

15 lines
210 B
C

#include "testConly.h"
#include <stdio.h>
int CsharedFunction(void)
{
#ifndef TEST_C_FLAGS
printf("TEST_C_FLAGS failed\n");
return 0;
#else
printf("Passed: TEST_C_FLAGS passed\n");
#endif
return 1;
}