summaryrefslogtreecommitdiff
path: root/Tests/VSExternalInclude/Lib2/lib2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/VSExternalInclude/Lib2/lib2.cpp')
-rw-r--r--Tests/VSExternalInclude/Lib2/lib2.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/Tests/VSExternalInclude/Lib2/lib2.cpp b/Tests/VSExternalInclude/Lib2/lib2.cpp
new file mode 100644
index 000000000..adc2d29af
--- /dev/null
+++ b/Tests/VSExternalInclude/Lib2/lib2.cpp
@@ -0,0 +1,9 @@
+
+#include "lib2.h"
+#include "lib1.h"
+
+int add1_and_mult2(int num)
+{
+ int tmp = add1(num);
+ return tmp * 2;
+}