2002-04-09 18:19:02 +04:00
|
|
|
#include "testConly.h"
|
2004-05-01 02:21:55 +04:00
|
|
|
#include <stdio.h>
|
2002-04-08 21:36:18 +04:00
|
|
|
|
|
|
|
int CsharedFunction()
|
|
|
|
{
|
2002-04-09 20:02:48 +04:00
|
|
|
#ifndef TEST_C_FLAGS
|
|
|
|
printf("TEST_C_FLAGS failed\n");
|
|
|
|
return 0;
|
|
|
|
#else
|
|
|
|
printf("Passed: TEST_C_FLAGS passed\n");
|
|
|
|
#endif
|
2002-04-08 21:36:18 +04:00
|
|
|
return 1;
|
|
|
|
}
|