mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
10 lines
111 B
C++
10 lines
111 B
C++
|
|
#include "lib2.h"
|
|
#include "lib1.h"
|
|
|
|
int add1_and_mult2(int num)
|
|
{
|
|
int tmp = add1(num);
|
|
return tmp * 2;
|
|
}
|