summaryrefslogtreecommitdiff
path: root/Tests/SimpleExclude/dirC/dirA/t4.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/SimpleExclude/dirC/dirA/t4.c')
-rw-r--r--Tests/SimpleExclude/dirC/dirA/t4.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/Tests/SimpleExclude/dirC/dirA/t4.c b/Tests/SimpleExclude/dirC/dirA/t4.c
new file mode 100644
index 000000000..7c36ca927
--- /dev/null
+++ b/Tests/SimpleExclude/dirC/dirA/t4.c
@@ -0,0 +1,17 @@
+#include <stdio.h>
+
+#ifdef __CLASSIC_C__
+int main()
+{
+ int ac;
+ char*av[];
+#else
+ int main(int ac, char*av[])
+ {
+#endif
+ if(ac > 1000){return *av[0];}
+ printf("This is T4. This one should work.\n");
+ return 0;
+ }
+
+