cdt/cdt_5_0_x/org.eclipse.cdt.core.tests/resources/testlib/test2.c
changeset 0 0e6d23e2b466
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cdt/cdt_5_0_x/org.eclipse.cdt.core.tests/resources/testlib/test2.c	Fri Apr 03 17:12:41 2009 +0100
@@ -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);
+}