0

I am working on the Intel Edison and using Eclipse Kepler as the IDE with Intel system studio as the toolchain. However a certain rather major program requires the header file conio.h which is not included and therefore giving me a catastrophic error. This hampers my program execution. Please suggest a remedy or an alternate replacement.

0andriy
  • 4,183
  • 1
  • 24
  • 37
Cj93
  • 1

1 Answers1

0

Please suggest a remedy or an alternate replacement.

There is no alternate replacement, as conio.h is a non-standard header.

This means you will probably have to either create one yourself and add in it whatever symbols you are using from conio.h, or replace any APIs you are using from conio.h with other alternatives.

Edit: this link describes the typical things one might expect to find in conio.h.

utnapistim
  • 26,809
  • 3
  • 46
  • 82