You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#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;
|
|
|
|
}
|