blob: 9ad782984b37d2ea1fdfb5308527fd2218da6cf8 [file] [log] [blame]
#include <stdio.h>
extern
#ifdef _WIN32
__declspec(dllimport)
#endif
int ask(void);
int main(void)
{
printf("%i\n", ask());
return 0;
}