a simple program:
#include <conio.h>
int main()
{
getch();
return 0;
}
gives the following error:
POLINK: error: Unresolved external symbol '_getch'.
POLINK: fatal error: 1 unresolved external(s).
*** Error code: 1 ***
Done.
The compiler works perfectly for any header and associated functions that I've tried, except conio.h. Does anyone know what I might be missing?
Thank you.