repo.or.cz
/
cmake.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
STYLE: Nightly Version update
[cmake.git]
/
Tests
/
VSExternalInclude
/
Lib2
/
lib2.cpp
blob
adc2d29afe98058d51d9f6c26ac67d5d468d02c8
1
2
#include
"lib2.h"
3
#include
"lib1.h"
4
5
int
add1_and_mult2
(
int
num
)
6
{
7
int
tmp
=
add1
(
num
);
8
return
tmp
*
2
;
9
}