Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'core/org.eclipse.cdt.core.tests/resources/exe/test2.c')
-rw-r--r--core/org.eclipse.cdt.core.tests/resources/exe/test2.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/core/org.eclipse.cdt.core.tests/resources/exe/test2.c b/core/org.eclipse.cdt.core.tests/resources/exe/test2.c
new file mode 100644
index 00000000000..7b26241b059
--- /dev/null
+++ b/core/org.eclipse.cdt.core.tests/resources/exe/test2.c
@@ -0,0 +1,13 @@
+#include <stdio.h>
+
+int test2func1(void)
+{
+ printf("This is a function in the second object\n");
+ return(1);
+}
+
+int test2func2(void)
+{
+ printf("This is another function in the second object\n");
+ return(2);
+}

Back to the top