summaryrefslogtreecommitdiffstats
path: root/Tests/SourceFileProperty/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/SourceFileProperty/main.c')
-rw-r--r--Tests/SourceFileProperty/main.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/Tests/SourceFileProperty/main.c b/Tests/SourceFileProperty/main.c
new file mode 100644
index 0000000..b853408
--- /dev/null
+++ b/Tests/SourceFileProperty/main.c
@@ -0,0 +1,13 @@
+
+#ifndef NO_NEED_TO_CALL
+extern int icasetest();
+#endif
+
+int main(int argc, char** argv)
+{
+#ifdef NO_NEED_TO_CALL
+ return 0;
+#else
+ return icasetest();
+#endif
+}