repo.or.cz
/
CMakeLuaTailorHgBridge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Resync
[CMakeLuaTailorHgBridge.git]
/
CMakeLua
/
Tests
/
SimpleCOnly
/
main.c
blob
e4df685cb0df2363a9fa6c477dc0cd2ec1bfa5cf
1
#include <stdio.h>
2
3
extern
int
foo
();
4
extern
int
bar
();
5
6
int
main
()
7
{
8
int
i
=
foo
();
9
int
k
=
bar
();
10
i
=
i
*
k
;
11
return
i
;
12
}