Forum Discussion
Altera_Forum
Honored Contributor
11 years agoHi,
The solution is very simple, you have to change the way how you include your own headers.#include <stdio.h> This method is used to include standard library header files. The preprocessor searches the file normally in normally in directories pre-designated by the compiler. #include "proj_files/testfunc.h" This method is used to include programmer defined header files. The preprocessor searches the file in the same directory as the include directive. Just try it out.