2002-04-09 10:19:02 -04:00
|
|
|
#include "testConly.h"
|
2004-04-30 18:21:55 -04:00
|
|
|
#include <stdio.h>
|
2002-04-08 13:36:18 -04:00
|
|
|
|
|
|
|
int CsharedFunction()
|
|
|
|
{
|
2002-04-09 12: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 13:36:18 -04:00
|
|
|
return 1;
|
|
|
|
}
|