|
Probably the header file isn't in the path. Most often this type of thing occurs because the code's author assumes one particular path, and your system is slightly different.
Try using an explicit path, for example, change:
#include stdio.h
to:
#include /usr/src/stdio.h
(of course the path preceding the header file name would be the required one for your system.)
__________________
Thorn
"Read Altas Shrugged. Compare it to today. Repeat as necessary"
|