cmake/Tests/Complex/Library/testConly.c

15 lines
210 B
C
Raw Normal View History

#include "testConly.h"
2020-02-01 23:06:01 +01:00
#include <stdio.h>
2024-04-14 22:45:38 +02:00
int CsharedFunction(void)
{
#ifndef TEST_C_FLAGS
printf("TEST_C_FLAGS failed\n");
return 0;
#else
2013-03-16 19:13:01 +02:00
printf("Passed: TEST_C_FLAGS passed\n");
#endif
return 1;
}