summaryrefslogtreecommitdiff
path: root/Tests/ComplexOneConfig/Library/testConly.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/ComplexOneConfig/Library/testConly.c')
-rw-r--r--Tests/ComplexOneConfig/Library/testConly.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/Tests/ComplexOneConfig/Library/testConly.c b/Tests/ComplexOneConfig/Library/testConly.c
new file mode 100644
index 000000000..2d83f778e
--- /dev/null
+++ b/Tests/ComplexOneConfig/Library/testConly.c
@@ -0,0 +1,13 @@
+#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;
+}