mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-14 02:08:27 +08:00
10 lines
99 B
C
10 lines
99 B
C
#include <liba.h>
|
|
|
|
#ifdef _WIN32
|
|
__declspec(dllexport)
|
|
#endif
|
|
int ask(void)
|
|
{
|
|
return answer();
|
|
}
|