mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 21:59:54 -06:00
10 lines
105 B
C
10 lines
105 B
C
int middle(void);
|
|
|
|
#ifdef _WIN32
|
|
__declspec(dllexport)
|
|
#endif
|
|
int top(void)
|
|
{
|
|
return middle() + 2;
|
|
}
|