index
:
CMake.git
master
release
CMake is a cross-platform, open-source build system generator.
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Tests
/
RunCMake
/
Emscripten
/
circular2.c
blob: 751bab5dd4469ebe0888291a36213f4e94bc22cc (
plain
)
1
2
3
4
5
6
7
void
circular1
(
void
);
void
circular2
(
void
)
{
circular1
();
}