mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-06 07:09:49 -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;
|
|
}
|