summaryrefslogtreecommitdiff
path: root/Tests/VSExternalInclude/Lib2/lib2.cpp
blob: adc2d29afe98058d51d9f6c26ac67d5d468d02c8 (plain)
1
2
3
4
5
6
7
8
9

#include "lib2.h"
#include "lib1.h"

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