This is a relative path, and the preprocessor will look for a file in a directory called ssiutil . Exactly where this directory depends on your compiler options. For example, the MS compiler searches as follows:
This form tells the preprocessor to look for include files in the same directory of the file that contains the #include statement, and then in directories of any files that include (#include) this file. The preprocessor then searches the path specified by the / I compiler option, and then the paths specified by the INCLUDE environment variable.
You may need to review the documentation for your specific tools to find out how the search is performed.
source share