mirror of
https://github.com/reactos/CMake.git
synced 2025-01-26 22:07:24 +00: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;
|
|
}
|