mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-26 04:09:35 +03:00
10 lines
99 B
C
10 lines
99 B
C
#include <liba.h>
|
|
|
|
#ifdef _WIN32
|
|
__declspec(dllexport)
|
|
#endif
|
|
int ask(void)
|
|
{
|
|
return answer();
|
|
}
|