Controls the lookup of #include files.
#pragma srcrelincludes on | off | reset
When on , the compiler looks for #include files relative to the previously included file (not just the source file). When off , the compiler uses the CodeWarrior IDE's access paths or the access paths specified with the -ir option.
Use this pragma when multiple files use the same file name and are intended to be included by another header file in that directory. This is a common practice in UNIX programming.
This pragma corresponds to the Source-relative includes option in the Access Paths panel.By default, this pragma is off .