summaryrefslogtreecommitdiffstats
path: root/Tests/VSExternalInclude/Lib2/lib2.cpp
blob: 37180172bb22786a3ebc1e88f0b13dad4c016a2b (plain)
1
2
3
4
5
6
7
8
9
10

#include "lib2.h"

#include "lib1.h"

int add1_and_mult2(int num)
{
  int tmp = add1(num);
  return tmp * 2;
}