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
Updated formatting of documentation plus a little reorganization.
[cmake.git]
/
Tests
/
Jump
/
Executable
/
jumpExecutable.cxx
blob
7a050c702898589db539361e950d8450fc337d30
1
#ifdef _WIN32
2
# define JUMP_IMPORT __declspec(dllimport)
3
#else
4
# define JUMP_IMPORT extern
5
#endif
6
7
extern
int
jumpStatic
();
8
JUMP_IMPORT
int
jumpShared
();
9
int
main
()
10
{
11
return
jumpShared
() &&
jumpShared
();
12
}